forked from ghuntley/thenftbay.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
browse.json
5829 lines (5829 loc) · 266 KB
/
browse.json
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"assets": [
{
"id": 104009265,
"token_id": "59437203343991244861059509462090966813882298948196759266404152899184539729921",
"num_sales": 0,
"background_color": null,
"image_url": "https://lh3.googleusercontent.com/M1QMzSIzHPhIX_XbA1iOEaD2lH5X4MemDOJSvPbqpXf4nMZLMjOfsh4HOnF653N2qWyotySQUdjvM47jC-wdH0ckKHnAgg8ZEOBO",
"image_preview_url": "https://lh3.googleusercontent.com/M1QMzSIzHPhIX_XbA1iOEaD2lH5X4MemDOJSvPbqpXf4nMZLMjOfsh4HOnF653N2qWyotySQUdjvM47jC-wdH0ckKHnAgg8ZEOBO=s250",
"image_thumbnail_url": "https://lh3.googleusercontent.com/M1QMzSIzHPhIX_XbA1iOEaD2lH5X4MemDOJSvPbqpXf4nMZLMjOfsh4HOnF653N2qWyotySQUdjvM47jC-wdH0ckKHnAgg8ZEOBO=s128",
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": "Lucky Binary NFT Number #89123",
"description": null,
"external_link": null,
"asset_contract": {
"address": "0x495f947276749ce646f68ac8c248420045cb7b5e",
"asset_contract_type": "semi-fungible",
"created_date": "2020-12-02T17:40:53.232025",
"name": "OpenSea Collection",
"nft_version": null,
"opensea_version": "2.0.0",
"owner": 102384,
"schema_name": "ERC1155",
"symbol": "OPENSTORE",
"total_supply": null,
"description": "",
"external_link": null,
"image_url": null,
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 0,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 250,
"payout_address": null
},
"permalink": "https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/59437203343991244861059509462090966813882298948196759266404152899184539729921",
"collection": {
"banner_image_url": "https://lh3.googleusercontent.com/8SokVrf1AsSfLJwGfNxH45xnl5XKp1000HDccsQCwU4mCDKtpormMKTOB4WI7-tUgF0CArBwlO5E8JrZoTvJ7Cw7vF6DjhGFiGMx=s2500",
"chat_url": null,
"created_date": "2021-11-10T10:44:54.951838",
"default_to_fiat": false,
"description": "Lucky Binary NFT Number ☘️☘️☘️\n\nChoose your lucky number from 0 to 1,000,000 in binary value.\n\nYour lucky number in your portfolio will bring you luck and growth in the value of all your other NTFs\n\nall NFTs are unique !!!\n\n😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊\n\n☘️☘️☘️☘️☘️☘️Luck is guaranteed☘️☘️☘️☘️☘️☘️\n \n\nSome words about me:\n\nMy name is Daniel. I am 11 years old. I live with my mother and younger sister. For a year now I have been interested in the world of Crypto and NFT😊\nI want to raise money to support my family and to get into a good college!\nI know I will become a successful trader sooner or later. 😎😎😎\nThe future belongs to cryptocurrency and blockchain !!!!\n\nAnother dream is to raise money for the purchase of a CryptoPunk and a Bored Ape. 😍😍😍",
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "250",
"discord_url": null,
"display_data": {
"card_display_style": "cover"
},
"external_url": null,
"featured": false,
"featured_image_url": "https://lh3.googleusercontent.com/8SokVrf1AsSfLJwGfNxH45xnl5XKp1000HDccsQCwU4mCDKtpormMKTOB4WI7-tUgF0CArBwlO5E8JrZoTvJ7Cw7vF6DjhGFiGMx=s300",
"hidden": false,
"safelist_request_status": "not_requested",
"image_url": "https://lh3.googleusercontent.com/6mRJtfPAOUXtosjflDH4FGbx19Luo8XgEJaK2k-I8Xfk0WOQr48DDlcd9aR-FOSpyc_6O-jUGQ1_vba2yExcKnXh9-FvPQhqcxxNjQ=s120",
"is_subject_to_whitelist": false,
"large_image_url": "https://lh3.googleusercontent.com/8SokVrf1AsSfLJwGfNxH45xnl5XKp1000HDccsQCwU4mCDKtpormMKTOB4WI7-tUgF0CArBwlO5E8JrZoTvJ7Cw7vF6DjhGFiGMx=s300",
"medium_username": null,
"name": "Lucky Binary NFT Number",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": "0x836843d23b5ea5c49c87a5b6bd4f9729964f93b4",
"require_email": false,
"short_description": null,
"slug": "lucky-binary-nft-number",
"telegram_url": null,
"twitter_username": "iDaniel2000",
"instagram_username": null,
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": {
"username": "NullAddress"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/1.png",
"address": "0x0000000000000000000000000000000000000000",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": "iDaniel"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/29.png",
"address": "0x836843d23b5ea5c49c87a5b6bd4f9729964f93b4",
"config": ""
},
"traits": [],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": true,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009261,
"token_id": "24078794701676888564016824786221604992382218849059542596051740323327130992641",
"num_sales": 0,
"background_color": null,
"image_url": "https://lh3.googleusercontent.com/04pH4PWFsM0t_RiAmWGDClQ66ErvLTcFz-tutn8Yh4KfuilPqVZR94q2SiYqB3viwuk2d_8sq7XUuoRFtOaorE5-p2xC9q6-iPAT",
"image_preview_url": "https://lh3.googleusercontent.com/04pH4PWFsM0t_RiAmWGDClQ66ErvLTcFz-tutn8Yh4KfuilPqVZR94q2SiYqB3viwuk2d_8sq7XUuoRFtOaorE5-p2xC9q6-iPAT=s250",
"image_thumbnail_url": "https://lh3.googleusercontent.com/04pH4PWFsM0t_RiAmWGDClQ66ErvLTcFz-tutn8Yh4KfuilPqVZR94q2SiYqB3viwuk2d_8sq7XUuoRFtOaorE5-p2xC9q6-iPAT=s128",
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": "Brotherhood",
"description": "Brotherhood\n\nPart of the Films and TV Collection\n\nThe Unique URL for this card is:\nhttps://www.imdb.com/title/tt00092251/\n\nStake the web's best web pages. Every unique web page can only be staked once.\n",
"external_link": null,
"asset_contract": {
"address": "0x495f947276749ce646f68ac8c248420045cb7b5e",
"asset_contract_type": "semi-fungible",
"created_date": "2020-12-02T17:40:53.232025",
"name": "OpenSea Collection",
"nft_version": null,
"opensea_version": "2.0.0",
"owner": 102384,
"schema_name": "ERC1155",
"symbol": "OPENSTORE",
"total_supply": null,
"description": "",
"external_link": null,
"image_url": null,
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 0,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 250,
"payout_address": null
},
"permalink": "https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/24078794701676888564016824786221604992382218849059542596051740323327130992641",
"collection": {
"banner_image_url": "https://lh3.googleusercontent.com/11sJYN5dNXFevzNWfsVVyAngXYana77YOGx-JowOm-mGrHonNPCMIsD0k1ADhiewP9VMTeUGzRKT5H_Jotc2nQNRxwWXQ34Dg34R-kQ=s2500",
"chat_url": null,
"created_date": "2021-09-12T02:51:26.668481",
"default_to_fiat": false,
"description": "Stake the web's best web pages.\nEvery unique web page can only be staked once.\nStakeTheWeb.net\nTwitter@StakeTheWeb\nInstagram.com/StakeTheWeb\nif you'd like us to create one you don't see, fill the form at StakeTheWeb.net",
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "1000",
"discord_url": null,
"display_data": {
"card_display_style": "contain"
},
"external_url": "http://staketheweb.net",
"featured": false,
"featured_image_url": "https://lh3.googleusercontent.com/jZc03L-bwRwgoI0LVNMA4T055gmOpP_7ibQwuZeNIg8hZ2xQ10bdJHE9m-HWhGVB2t-pxP8Qj_z0HzE2vszl-EMA-sD576I0qp6twjM=s300",
"hidden": true,
"safelist_request_status": "not_requested",
"image_url": "https://lh3.googleusercontent.com/T41f7Vg_OCWwdLP7aoT0HdPRUIt88qaT2GzJy9n69xSsPMGNz9pN27_gqBu_UriVNnNjPTMLLNsLNU5GrLS1S1gS8ijlzGcwEvL2=s120",
"is_subject_to_whitelist": false,
"large_image_url": "https://lh3.googleusercontent.com/jZc03L-bwRwgoI0LVNMA4T055gmOpP_7ibQwuZeNIg8hZ2xQ10bdJHE9m-HWhGVB2t-pxP8Qj_z0HzE2vszl-EMA-sD576I0qp6twjM=s300",
"medium_username": null,
"name": "StakeTheWeb Collection",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": "0x353c1d661603d6f1554a53e6622b278aea6e2d9f",
"require_email": false,
"short_description": null,
"slug": "staketheweb-collection",
"telegram_url": null,
"twitter_username": null,
"instagram_username": "staketheweb",
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": {
"username": "NullAddress"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/1.png",
"address": "0x0000000000000000000000000000000000000000",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": "StakeTheWeb"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/23.png",
"address": "0x353c1d661603d6f1554a53e6622b278aea6e2d9f",
"config": ""
},
"traits": [],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": true,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009256,
"token_id": "114583822803194339369930495217959851924356929882985972270491720325847427579905",
"num_sales": 0,
"background_color": null,
"image_url": "https://lh3.googleusercontent.com/s-AOeiaw66HqnqMgvC6IMQDmkfccaJtylOy9-o_ssA7RU433LzgK1lFXM5PZ6xkPtix7qOmBk6RWy4gOeEVl8qPIJ4Schy5P9oPaYw",
"image_preview_url": "https://lh3.googleusercontent.com/s-AOeiaw66HqnqMgvC6IMQDmkfccaJtylOy9-o_ssA7RU433LzgK1lFXM5PZ6xkPtix7qOmBk6RWy4gOeEVl8qPIJ4Schy5P9oPaYw=s250",
"image_thumbnail_url": "https://lh3.googleusercontent.com/s-AOeiaw66HqnqMgvC6IMQDmkfccaJtylOy9-o_ssA7RU433LzgK1lFXM5PZ6xkPtix7qOmBk6RWy4gOeEVl8qPIJ4Schy5P9oPaYw=s128",
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": "Pika #3403",
"description": "This is one of the rare Pika Inu NFTs. Each NFT is unique, handmade and occurs only once.\n\nNumber: 3403\n\nCollection: Pika Inu",
"external_link": null,
"asset_contract": {
"address": "0x495f947276749ce646f68ac8c248420045cb7b5e",
"asset_contract_type": "semi-fungible",
"created_date": "2020-12-02T17:40:53.232025",
"name": "OpenSea Collection",
"nft_version": null,
"opensea_version": "2.0.0",
"owner": 102384,
"schema_name": "ERC1155",
"symbol": "OPENSTORE",
"total_supply": null,
"description": "",
"external_link": null,
"image_url": null,
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 0,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 250,
"payout_address": null
},
"permalink": "https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/114583822803194339369930495217959851924356929882985972270491720325847427579905",
"collection": {
"banner_image_url": "https://lh3.googleusercontent.com/TL5zTeKHCeauS-IJmP5yGt7ClyHDz5YqU3OAWcaMriguNNdbYYxMiMrUIsm-5B8oOyM88fczoshaniid2dEdHegVwZUP0ITknBZi=s2500",
"chat_url": null,
"created_date": "2021-11-12T12:59:57.286709",
"default_to_fiat": false,
"description": "Pika Inu is a collection of 10,000 algorithmically generated and perfectly diversified pikachu NFTs. Each Pika Inu is handmade, unique and contains 8 properties. Feel free to choose your favorite Pika Inu.\n",
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "500",
"discord_url": null,
"display_data": {
"card_display_style": "contain"
},
"external_url": null,
"featured": false,
"featured_image_url": "https://lh3.googleusercontent.com/8jfUhSBaeSQurFvs-wiO_aRYShzaDCNzrnwjSnBx7y9z41svdMYzGAS3PXKrAqyE4HHhy6_1EN9MpmT8jIUwtK9pjH22haRbcpeu=s300",
"hidden": false,
"safelist_request_status": "not_requested",
"image_url": "https://lh3.googleusercontent.com/_5VGodkcUiRGLi-aMObxcVccAyQWzYfwIo8MFvQwfFLZLTXJsTv30LV5tE8tjPNZVD9t5hVeMRWBXC2oEb0Zb-7Tf4582t_VZubidQ=s120",
"is_subject_to_whitelist": false,
"large_image_url": "https://lh3.googleusercontent.com/8jfUhSBaeSQurFvs-wiO_aRYShzaDCNzrnwjSnBx7y9z41svdMYzGAS3PXKrAqyE4HHhy6_1EN9MpmT8jIUwtK9pjH22haRbcpeu=s300",
"medium_username": null,
"name": "Pika Inu",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": "0xfd54253b1bde48b537db9d6711a810e8df437c6c",
"require_email": false,
"short_description": null,
"slug": "pika-inu",
"telegram_url": null,
"twitter_username": "CrypticLinesNFT",
"instagram_username": "crypticlinesnft",
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": {
"username": "NullAddress"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/1.png",
"address": "0x0000000000000000000000000000000000000000",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": "CrypticLines"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/31.png",
"address": "0xfd54253b1bde48b537db9d6711a810e8df437c6c",
"config": ""
},
"traits": [
{
"trait_type": "BODY",
"value": "Yellow",
"display_type": null,
"max_value": null,
"trait_count": 2583,
"order": null
},
{
"trait_type": "HEAD",
"value": "Chinese Hat",
"display_type": null,
"max_value": null,
"trait_count": 681,
"order": null
},
{
"trait_type": "EYES",
"value": "Stoned Eye Patch",
"display_type": null,
"max_value": null,
"trait_count": 329,
"order": null
},
{
"trait_type": "NECKLACE",
"value": "Silver Necklace USD",
"display_type": null,
"max_value": null,
"trait_count": 342,
"order": null
},
{
"trait_type": "BACKGROUND",
"value": "Green",
"display_type": null,
"max_value": null,
"trait_count": 641,
"order": null
},
{
"trait_type": "WATCH",
"value": "Silver Watch 3",
"display_type": null,
"max_value": null,
"trait_count": 649,
"order": null
},
{
"trait_type": "MOUTH",
"value": "Dirty",
"display_type": null,
"max_value": null,
"trait_count": 432,
"order": null
},
{
"trait_type": "CLOTHING",
"value": "Grey Pants",
"display_type": null,
"max_value": null,
"trait_count": 462,
"order": null
}
],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": true,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009255,
"token_id": "115544569517436291891952338594150192830117735931020177371197518225133386334209",
"num_sales": 0,
"background_color": null,
"image_url": "https://lh3.googleusercontent.com/AgqEKTwRHMr7v9HZIRyqB_47zga_W3cvm5ec0lLeQ9c2m6LRBkorih2NMXgmJWMMdkQ8wvvn_GPsvT_65Iv7J55pBtTypCMr_26mG4o",
"image_preview_url": "https://lh3.googleusercontent.com/AgqEKTwRHMr7v9HZIRyqB_47zga_W3cvm5ec0lLeQ9c2m6LRBkorih2NMXgmJWMMdkQ8wvvn_GPsvT_65Iv7J55pBtTypCMr_26mG4o=s250",
"image_thumbnail_url": "https://lh3.googleusercontent.com/AgqEKTwRHMr7v9HZIRyqB_47zga_W3cvm5ec0lLeQ9c2m6LRBkorih2NMXgmJWMMdkQ8wvvn_GPsvT_65Iv7J55pBtTypCMr_26mG4o=s128",
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": "JRNY NFT CLUB #9462",
"description": null,
"external_link": null,
"asset_contract": {
"address": "0x495f947276749ce646f68ac8c248420045cb7b5e",
"asset_contract_type": "semi-fungible",
"created_date": "2020-12-02T17:40:53.232025",
"name": "OpenSea Collection",
"nft_version": null,
"opensea_version": "2.0.0",
"owner": 102384,
"schema_name": "ERC1155",
"symbol": "OPENSTORE",
"total_supply": null,
"description": "",
"external_link": null,
"image_url": null,
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 0,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 250,
"payout_address": null
},
"permalink": "https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/115544569517436291891952338594150192830117735931020177371197518225133386334209",
"collection": {
"banner_image_url": null,
"chat_url": null,
"created_date": "2021-11-07T00:59:17.716563",
"default_to_fiat": false,
"description": "",
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "0",
"discord_url": null,
"display_data": {
"card_display_style": "cover"
},
"external_url": null,
"featured": false,
"featured_image_url": null,
"hidden": false,
"safelist_request_status": "not_requested",
"image_url": "https://lh3.googleusercontent.com/BVYfJlfMl1HvK-e_J48Jrup57O3cR8vxhbh9vcIXTZIlW2h0LHD8GKNnHtdabUaG1sWAq6pb0MRzSR47JuWLil5Q8JG4oSi4N2cNSQ=s120",
"is_subject_to_whitelist": false,
"large_image_url": null,
"medium_username": null,
"name": "ldflfd",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": null,
"require_email": false,
"short_description": null,
"slug": "ldflfd",
"telegram_url": null,
"twitter_username": null,
"instagram_username": null,
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": {
"username": "NullAddress"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/1.png",
"address": "0x0000000000000000000000000000000000000000",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": null
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/14.png",
"address": "0xff73e8a7537809042e585c63c72f16b80b00f184",
"config": ""
},
"traits": [],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": true,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009251,
"token_id": "56182277567999872894853590754284663567802189497040825492823562931333278728193",
"num_sales": 0,
"background_color": null,
"image_url": "https://lh3.googleusercontent.com/kjSvEQun0-fzJoo8KvpQiVcc8SrYi4RyKdAFXxOX5YQtJyYYhm5Z8OLEXWjm4IJ4y2Qjwlxk0Hd0Ka_SENbZKPmYQ9ZD3OvH7bt8YQ",
"image_preview_url": "https://lh3.googleusercontent.com/kjSvEQun0-fzJoo8KvpQiVcc8SrYi4RyKdAFXxOX5YQtJyYYhm5Z8OLEXWjm4IJ4y2Qjwlxk0Hd0Ka_SENbZKPmYQ9ZD3OvH7bt8YQ=s250",
"image_thumbnail_url": "https://lh3.googleusercontent.com/kjSvEQun0-fzJoo8KvpQiVcc8SrYi4RyKdAFXxOX5YQtJyYYhm5Z8OLEXWjm4IJ4y2Qjwlxk0Hd0Ka_SENbZKPmYQ9ZD3OvH7bt8YQ=s128",
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": "Barely Button #4572",
"description": "Barely Buttons is a family of ethereal buttons sewn across the metaverse fabric. Tenderly curated by Oria Saskia.",
"external_link": "https://www.instagram.com/doodlexoodle/",
"asset_contract": {
"address": "0x495f947276749ce646f68ac8c248420045cb7b5e",
"asset_contract_type": "semi-fungible",
"created_date": "2020-12-02T17:40:53.232025",
"name": "OpenSea Collection",
"nft_version": null,
"opensea_version": "2.0.0",
"owner": 102384,
"schema_name": "ERC1155",
"symbol": "OPENSTORE",
"total_supply": null,
"description": "",
"external_link": null,
"image_url": null,
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 0,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 250,
"payout_address": null
},
"permalink": "https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/56182277567999872894853590754284663567802189497040825492823562931333278728193",
"collection": {
"banner_image_url": null,
"chat_url": null,
"created_date": "2021-11-07T14:00:33.401401",
"default_to_fiat": false,
"description": null,
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "0",
"discord_url": null,
"display_data": {
"card_display_style": "contain",
"images": []
},
"external_url": null,
"featured": false,
"featured_image_url": null,
"hidden": true,
"safelist_request_status": "not_requested",
"image_url": null,
"is_subject_to_whitelist": false,
"large_image_url": null,
"medium_username": null,
"name": "Doodlexoodle Collection",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": null,
"require_email": false,
"short_description": null,
"slug": "doodlexoodle-collection",
"telegram_url": null,
"twitter_username": null,
"instagram_username": null,
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": {
"username": "NullAddress"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/1.png",
"address": "0x0000000000000000000000000000000000000000",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": "Doodlexoodle"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/19.png",
"address": "0x7c360acf26061bc7097616000eac63e9989fb233",
"config": ""
},
"traits": [],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": true,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009250,
"token_id": "17172372002200731",
"num_sales": 0,
"background_color": null,
"image_url": "",
"image_preview_url": null,
"image_thumbnail_url": null,
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": null,
"description": null,
"external_link": null,
"asset_contract": {
"address": "0x82c7a8f707110f5fbb16184a5933e9f78a34c6ab",
"asset_contract_type": "non-fungible",
"created_date": "2020-09-09T02:00:42.459716",
"name": "Emblem Vault V2",
"nft_version": "3.0",
"opensea_version": null,
"owner": 56647030,
"schema_name": "ERC721",
"symbol": "Emblem.pro",
"total_supply": "1",
"description": "Emblem Vaults are NFT containers that can contain one or more tokens, or NFT's\n\n - Projects : \n[Rare Pepe](https://is.gd/rarepepe) | [Spells of Genesis](https://is.gd/SpellsOfGenesis) | [Bitcorns](https://is.gd/Bitcorn) | [Ether Rocks](https://is.gd/EtherRocks) | [Etheria (0xb21f8)](https://is.gd/Etheria) | [Force of Will](https://is.gd/ForceOfWill) | [Age of Chains](https://is.gd/AoChains)\n***\n- Year : [[2016](https://is.gd/date2016) | [2017](https://is.gd/date2017) | [2018](https://is.gd/date2018) Series: [1](https://is.gd/series01) | [2](https://is.gd/series02) | [3](https://is.gd/series03) | [4](https://is.gd/series04) | [5](https://is.gd/series05) | [>5](https://is.gd/seriesover05) \n - Circulating [↓101](https://is.gd/below101) | [100 ↔ 500](https://is.gd/between15) | [↑ 500](https://is.gd/over500) \n- Guides [Counterparty Guide](https://is.gd/xcpguide)",
"external_link": "https://emblem.pro",
"image_url": "https://lh3.googleusercontent.com/VkSY4QiLanH0h2oS37cjRAENLDLBqLKUX3YC4ZvdEW60zI9OXoRl4E9uR1x3d8hU8ekFai4Ruwq4FObZ0VH2NpU=s120",
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 250,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 500,
"payout_address": "0x2272ecf43a7481088fa2d4ba9109804ed5a31901"
},
"permalink": "https://opensea.io/assets/0x82c7a8f707110f5fbb16184a5933e9f78a34c6ab/17172372002200731",
"collection": {
"banner_image_url": null,
"chat_url": null,
"created_date": "2020-09-09T02:00:42.938798",
"default_to_fiat": false,
"description": "Emblem Vaults are NFT containers that can contain one or more tokens, or NFT's\n\n - Projects : \n[Rare Pepe](https://is.gd/rarepepe) | [Spells of Genesis](https://is.gd/SpellsOfGenesis) | [Bitcorns](https://is.gd/Bitcorn) | [Ether Rocks](https://is.gd/EtherRocks) | [Etheria (0xb21f8)](https://is.gd/Etheria) | [Force of Will](https://is.gd/ForceOfWill) | [Age of Chains](https://is.gd/AoChains)\n***\n- Year : [[2016](https://is.gd/date2016) | [2017](https://is.gd/date2017) | [2018](https://is.gd/date2018) Series: [1](https://is.gd/series01) | [2](https://is.gd/series02) | [3](https://is.gd/series03) | [4](https://is.gd/series04) | [5](https://is.gd/series05) | [>5](https://is.gd/seriesover05) \n - Circulating [↓101](https://is.gd/below101) | [100 ↔ 500](https://is.gd/between15) | [↑ 500](https://is.gd/over500) \n- Guides [Counterparty Guide](https://is.gd/xcpguide)",
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "250",
"discord_url": null,
"display_data": {
"card_display_style": "contain"
},
"external_url": "https://emblem.pro",
"featured": false,
"featured_image_url": null,
"hidden": false,
"safelist_request_status": "approved",
"image_url": "https://lh3.googleusercontent.com/VkSY4QiLanH0h2oS37cjRAENLDLBqLKUX3YC4ZvdEW60zI9OXoRl4E9uR1x3d8hU8ekFai4Ruwq4FObZ0VH2NpU=s120",
"is_subject_to_whitelist": false,
"large_image_url": null,
"medium_username": null,
"name": "Emblem Vault [Ethereum]",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": "0x2272ecf43a7481088fa2d4ba9109804ed5a31901",
"require_email": false,
"short_description": null,
"slug": "emblem-vault",
"telegram_url": "https://t.me/Coval_Chat",
"twitter_username": "emblemvault",
"instagram_username": null,
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": null,
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/1.png",
"address": "0x15e357b247dab5937e69f2743886f77020ac4158",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": "Emblem-Deployer"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/23.png",
"address": "0x2272ecf43a7481088fa2d4ba9109804ed5a31901",
"config": "verified"
},
"traits": [],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": false,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009241,
"token_id": "80437765915499390013033102722739380745020866343729888553641346664561945608193",
"num_sales": 0,
"background_color": null,
"image_url": "https://lh3.googleusercontent.com/KR00P2gmsVizm7W81NQ7W27WBXc0kZPJdJWfC7GGvFUPTjOLADdSTTGy5uL729IQ7p9siUb8lZafZKyUPyOhL4Uxi8pNG6433lTUAQ",
"image_preview_url": "https://lh3.googleusercontent.com/KR00P2gmsVizm7W81NQ7W27WBXc0kZPJdJWfC7GGvFUPTjOLADdSTTGy5uL729IQ7p9siUb8lZafZKyUPyOhL4Uxi8pNG6433lTUAQ=s250",
"image_thumbnail_url": "https://lh3.googleusercontent.com/KR00P2gmsVizm7W81NQ7W27WBXc0kZPJdJWfC7GGvFUPTjOLADdSTTGy5uL729IQ7p9siUb8lZafZKyUPyOhL4Uxi8pNG6433lTUAQ=s128",
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": "SpaceGirls #332",
"description": null,
"external_link": null,
"asset_contract": {
"address": "0x495f947276749ce646f68ac8c248420045cb7b5e",
"asset_contract_type": "semi-fungible",
"created_date": "2020-12-02T17:40:53.232025",
"name": "OpenSea Collection",
"nft_version": null,
"opensea_version": "2.0.0",
"owner": 102384,
"schema_name": "ERC1155",
"symbol": "OPENSTORE",
"total_supply": null,
"description": "",
"external_link": null,
"image_url": null,
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 0,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 250,
"payout_address": null
},
"permalink": "https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/80437765915499390013033102722739380745020866343729888553641346664561945608193",
"collection": {
"banner_image_url": "https://lh3.googleusercontent.com/ddZlVlrvkEW1mkGtyIToJNsA6dibVPnISgvKg61kzx3GZQc8BwA199-gDFSYE94xMvTs4Tg9VknlIl2KzTCC-JH_LNh4iSYcsnEUBQ=s2500",
"chat_url": null,
"created_date": "2021-03-01T13:59:20.796328",
"default_to_fiat": false,
"description": "The NFT market is changing rapidly and we try to make something unique for you every day, so we created these amazing art to convey one thought: we are all so different, but still the same. It is enough to look at our nft and you will not be able to tear yourself away. This collection is for those who understand themselves and are ready to discover something new, each art is unique in its own way and it will be a great addition to your collection. Subscribe to our social networks to find out more.\r\nIn recent days we have worked very closely and are ready to present you a new collection of great or famous people. This collection is filled with tradition and we hope it will please you as much as it pleasing us.",
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "1000",
"discord_url": null,
"display_data": {
"card_display_style": "cover"
},
"external_url": null,
"featured": false,
"featured_image_url": "https://lh3.googleusercontent.com/MR0ubNaqqA0RnnGlZkQUTul7cbP2K136KEl4WWQXfIWVMiUNQiPEFDjPg7IJiwjGH1zLPXMpz4soHX-j9UWk2l9x_cpsV3wIpLkxyA=s300",
"hidden": false,
"safelist_request_status": "approved",
"image_url": "https://lh3.googleusercontent.com/7ZlTK-h6LyEig5HNcEHP_XxlzjW8dIBTXzFGfBveZUc5nMFfusl8YYfJoX8U1BhqkkL6xxBmAAuErHb3LF_70zLhagwQVZ7hnB8S9Q=s120",
"is_subject_to_whitelist": false,
"large_image_url": "https://lh3.googleusercontent.com/MR0ubNaqqA0RnnGlZkQUTul7cbP2K136KEl4WWQXfIWVMiUNQiPEFDjPg7IJiwjGH1zLPXMpz4soHX-j9UWk2l9x_cpsV3wIpLkxyA=s300",
"medium_username": null,
"name": "ARTface",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": "0x17c0c33437116d8961204dcd9fb55244cfd8f580",
"require_email": false,
"short_description": null,
"slug": "faceart",
"telegram_url": "https://t.me/ded_makar_MR",
"twitter_username": "ART__face",
"instagram_username": "artface_nft",
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": {
"username": "NullAddress"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/1.png",
"address": "0x0000000000000000000000000000000000000000",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": "ded_makarr"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/32.png",
"address": "0xb1d62980d0316304fb6c14242db5065befab8d21",
"config": ""
},
"traits": [],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": true,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009236,
"token_id": "59437203343991244861059509462090966813882298948196759266404152898085028102145",
"num_sales": 0,
"background_color": null,
"image_url": "https://lh3.googleusercontent.com/E5p5bqM5WbN0KO7A6pldBWWTXamduy_pUqNEwsUN7RD3rWf9GUkVtloMNw5FQiL8QZ2A3wSaDnVR6ys2SeT7HGO5r76raJR2BFKcq5Q",
"image_preview_url": "https://lh3.googleusercontent.com/E5p5bqM5WbN0KO7A6pldBWWTXamduy_pUqNEwsUN7RD3rWf9GUkVtloMNw5FQiL8QZ2A3wSaDnVR6ys2SeT7HGO5r76raJR2BFKcq5Q=s250",
"image_thumbnail_url": "https://lh3.googleusercontent.com/E5p5bqM5WbN0KO7A6pldBWWTXamduy_pUqNEwsUN7RD3rWf9GUkVtloMNw5FQiL8QZ2A3wSaDnVR6ys2SeT7HGO5r76raJR2BFKcq5Q=s128",
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": "Lucky Binary NFT Number #89122",
"description": null,
"external_link": null,
"asset_contract": {
"address": "0x495f947276749ce646f68ac8c248420045cb7b5e",
"asset_contract_type": "semi-fungible",
"created_date": "2020-12-02T17:40:53.232025",
"name": "OpenSea Collection",
"nft_version": null,
"opensea_version": "2.0.0",
"owner": 102384,
"schema_name": "ERC1155",
"symbol": "OPENSTORE",
"total_supply": null,
"description": "",
"external_link": null,
"image_url": null,
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 0,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 250,
"payout_address": null
},
"permalink": "https://opensea.io/assets/0x495f947276749ce646f68ac8c248420045cb7b5e/59437203343991244861059509462090966813882298948196759266404152898085028102145",
"collection": {
"banner_image_url": "https://lh3.googleusercontent.com/8SokVrf1AsSfLJwGfNxH45xnl5XKp1000HDccsQCwU4mCDKtpormMKTOB4WI7-tUgF0CArBwlO5E8JrZoTvJ7Cw7vF6DjhGFiGMx=s2500",
"chat_url": null,
"created_date": "2021-11-10T10:44:54.951838",
"default_to_fiat": false,
"description": "Lucky Binary NFT Number ☘️☘️☘️\n\nChoose your lucky number from 0 to 1,000,000 in binary value.\n\nYour lucky number in your portfolio will bring you luck and growth in the value of all your other NTFs\n\nall NFTs are unique !!!\n\n😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊😊\n\n☘️☘️☘️☘️☘️☘️Luck is guaranteed☘️☘️☘️☘️☘️☘️\n \n\nSome words about me:\n\nMy name is Daniel. I am 11 years old. I live with my mother and younger sister. For a year now I have been interested in the world of Crypto and NFT😊\nI want to raise money to support my family and to get into a good college!\nI know I will become a successful trader sooner or later. 😎😎😎\nThe future belongs to cryptocurrency and blockchain !!!!\n\nAnother dream is to raise money for the purchase of a CryptoPunk and a Bored Ape. 😍😍😍",
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "250",
"discord_url": null,
"display_data": {
"card_display_style": "cover"
},
"external_url": null,
"featured": false,
"featured_image_url": "https://lh3.googleusercontent.com/8SokVrf1AsSfLJwGfNxH45xnl5XKp1000HDccsQCwU4mCDKtpormMKTOB4WI7-tUgF0CArBwlO5E8JrZoTvJ7Cw7vF6DjhGFiGMx=s300",
"hidden": false,
"safelist_request_status": "not_requested",
"image_url": "https://lh3.googleusercontent.com/6mRJtfPAOUXtosjflDH4FGbx19Luo8XgEJaK2k-I8Xfk0WOQr48DDlcd9aR-FOSpyc_6O-jUGQ1_vba2yExcKnXh9-FvPQhqcxxNjQ=s120",
"is_subject_to_whitelist": false,
"large_image_url": "https://lh3.googleusercontent.com/8SokVrf1AsSfLJwGfNxH45xnl5XKp1000HDccsQCwU4mCDKtpormMKTOB4WI7-tUgF0CArBwlO5E8JrZoTvJ7Cw7vF6DjhGFiGMx=s300",
"medium_username": null,
"name": "Lucky Binary NFT Number",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": "0x836843d23b5ea5c49c87a5b6bd4f9729964f93b4",
"require_email": false,
"short_description": null,
"slug": "lucky-binary-nft-number",
"telegram_url": null,
"twitter_username": "iDaniel2000",
"instagram_username": null,
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": {
"username": "NullAddress"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/1.png",
"address": "0x0000000000000000000000000000000000000000",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": "iDaniel"
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/29.png",
"address": "0x836843d23b5ea5c49c87a5b6bd4f9729964f93b4",
"config": ""
},
"traits": [],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": true,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009234,
"token_id": "1379",
"num_sales": 0,
"background_color": null,
"image_url": "",
"image_preview_url": null,
"image_thumbnail_url": null,
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": null,
"description": null,
"external_link": null,
"asset_contract": {
"address": "0x2e5ac807ed31c33db08d53c0b1b90547d5104e66",
"asset_contract_type": "non-fungible",
"created_date": "2021-10-21T15:06:45.521749",
"name": "Tempus Sers",
"nft_version": "3.0",
"opensea_version": null,
"owner": 90349145,
"schema_name": "ERC721",
"symbol": "SERS",
"total_supply": "0",
"description": "The Sers are an exclusive collection of 3,333 unique Sers of the blockchain metaverse. Get whitelisted for being an early supporter of Tempus. Find out more: tempus.finance. Mint now: thesers.com",
"external_link": "https://thesers.com/",
"image_url": "https://lh3.googleusercontent.com/KiijKl0KsqDwwxlHG34XuPIsiFksjZKlYLCNyRwsqusN1K0fxUKawE4H5LGxDr6yNBhH6dARpUvH0BVeuMsbtCbE5dD8PNXSRXK8FW4=s120",
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 0,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 250,
"payout_address": null
},
"permalink": "https://opensea.io/assets/0x2e5ac807ed31c33db08d53c0b1b90547d5104e66/1379",
"collection": {
"banner_image_url": "https://lh3.googleusercontent.com/r-0UEMKxpWKL2EOIymxyVCUgSPr2qAyrLbOmRsP5gSIB_DjOWmu4rdL8cqaMuMV7cSt84r4JVyN0MutWmwmBDz-M1rtzyaXL-rzMBg=s2500",
"chat_url": null,
"created_date": "2021-10-21T18:23:02.664735",
"default_to_fiat": false,
"description": "The Sers are an exclusive collection of 3,333 unique Sers of the blockchain metaverse. Get whitelisted for being an early supporter of Tempus. Find out more: tempus.finance. Mint now: thesers.com",
"dev_buyer_fee_basis_points": "0",
"dev_seller_fee_basis_points": "0",
"discord_url": null,
"display_data": {
"card_display_style": "contain"
},
"external_url": "https://thesers.com/",
"featured": false,
"featured_image_url": "https://lh3.googleusercontent.com/49vFrkFH9OCQTuVH5kTSm3y_BgsT7UX45yhd55QMwupvcUMDVnn8OSlmrtOaJvvW8fnQ25BqWzpl6mJBerN1dhFbM1skMfjyaJYDPA=s300",
"hidden": false,
"safelist_request_status": "not_requested",
"image_url": "https://lh3.googleusercontent.com/KiijKl0KsqDwwxlHG34XuPIsiFksjZKlYLCNyRwsqusN1K0fxUKawE4H5LGxDr6yNBhH6dARpUvH0BVeuMsbtCbE5dD8PNXSRXK8FW4=s120",
"is_subject_to_whitelist": false,
"large_image_url": "https://lh3.googleusercontent.com/49vFrkFH9OCQTuVH5kTSm3y_BgsT7UX45yhd55QMwupvcUMDVnn8OSlmrtOaJvvW8fnQ25BqWzpl6mJBerN1dhFbM1skMfjyaJYDPA=s300",
"medium_username": null,
"name": "Sers",
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": "0",
"opensea_seller_fee_basis_points": "250",
"payout_address": null,
"require_email": false,
"short_description": null,
"slug": "sers",
"telegram_url": null,
"twitter_username": "@TempusSers",
"instagram_username": null,
"wiki_url": null
},
"decimals": null,
"token_metadata": null,
"owner": {
"user": null,
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/5.png",
"address": "0xeab0e7877f14aba2066ed139e100c3d0ad8a3454",
"config": ""
},
"sell_orders": null,
"creator": {
"user": {
"username": null
},
"profile_img_url": "https://storage.googleapis.com/opensea-static/opensea-profile/19.png",
"address": "0xafd0659e7993bd4d820f17a2bb2e79205feaf9b9",
"config": ""
},
"traits": [],
"last_sale": null,
"top_bid": null,
"listing_date": null,
"is_presale": false,
"transfer_fee_payment_token": null,
"transfer_fee": null
},
{
"id": 104009226,
"token_id": "667",
"num_sales": 0,
"background_color": null,
"image_url": "",
"image_preview_url": null,
"image_thumbnail_url": null,
"image_original_url": null,
"animation_url": null,
"animation_original_url": null,
"name": null,
"description": null,
"external_link": null,
"asset_contract": {
"address": "0x657fabdb226abc59227e02e94089afbc67a597fe",
"asset_contract_type": "non-fungible",
"created_date": "2021-11-08T16:26:21.949242",
"name": "1,989 Sisters",
"nft_version": "3.0",
"opensea_version": null,
"owner": 120613803,
"schema_name": "ERC721",
"symbol": "1989-Sisters",
"total_supply": "1989",
"description": "Link to mint a Sister: https://opensea.io/collection/1989-sisters-sale\r\n\r\n1,989 Sisters is the first NFT collection from fashion illustrator @blairz. \r\n\r\nEvery trait in this collection was hand-drawn or painted on paper, scanned and then layered through an algorithm to generate 1,989 unique women living on the Ethereum blockchain.\r\n\r\nThe collection includes a nod to ten of @blairz’s favorite iconic fashion prints. No brands are affiliated, connected or associated in any way with 1,989 Sisters.\r\n\r\nFor more information, visit www.blairbreitenstein.com/nft-collection",
"external_link": "https://blairbreitenstein.com/nft-collection",
"image_url": "https://lh3.googleusercontent.com/COKtK8XJ72Q8GWsHI-E6kGEE7W0flwWDy1e7xhYv7foD2lrJi_UknoZcHICE45tyI0u-nQZ1M2eDS8Vf09fi99R-b5KqsiT78ffi=s120",
"default_to_fiat": false,
"dev_buyer_fee_basis_points": 0,
"dev_seller_fee_basis_points": 500,
"only_proxied_transfers": false,
"opensea_buyer_fee_basis_points": 0,
"opensea_seller_fee_basis_points": 250,
"buyer_fee_basis_points": 0,
"seller_fee_basis_points": 750,