-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.txt
More file actions
4446 lines (4404 loc) · 307 KB
/
error.txt
File metadata and controls
4446 lines (4404 loc) · 307 KB
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
ERROR: WALLET 0X1B8AFD0DE8A9368CE635BE8B9572C65D8F590B21 COULD NOT APPROVE THE MAGICEDEN AS A SPENDER. TASK HAS BEEN STOPPED.
// .sort(() => Math.random() - 0.5);
QUEUE PAUSED WHILE REMOVING PENDING BIDS...
JOB COUNT (20) BELOW MINIMUM THRESHOLD (64). REPLENISHING...
Added batch 3: 64 jobs.
Error formatting bid on Blur: Access token is undefined
Stopping health monitor...
/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:306
for (const timeout of require('timers').getActiveHandles()) {
^
TypeError: require.getActiveHandles is not a function or its return value is not iterable
at process.<anonymous> (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:306:43)
at Generator.next (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:31:71
at new Promise (<anonymous>)
at __awaiter (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:27:12)
at process.cleanup (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:298:12)
at process.emit (node:events:514:28)
at process.emit (node:domain:488:12)
at process.emit.sharedData.processEmitHook.installedValue [as emit] (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@cspotcode/source-map-support/source-map-support.js:745:40)
^C
Error during remove pending bids for task boredapeyachtclub: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task milady: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task pudgypenguins: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task azuki: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task mutant-ape-yacht-club: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task memelandcaptainz: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task lilpudgys: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task remilio-babies: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task castile-tarot: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task berachain-bit-bears: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task castile-tarot: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task remilio-babies: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task memelandcaptainz: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task lilpudgys: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task mutant-ape-yacht-club: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task azuki: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task pudgypenguins: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task milady: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
Error during remove pending bids for task boredapeyachtclub: Error: Remove pending bids timeout
at Timeout._onTimeout (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:749:37)
at listOnTimeout (node:internal/timers:573:17)
at processTimers (node:internal/timers:514:7)
=== Starting Cleanup ===
Stopping health monitor...
/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:243
for (const timeout of require('timers').getActiveHandles()) {
^
TypeError: require.getActiveHandles is not a function or its return value is not iterable
at process.<anonymous> (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:243:43)
at Generator.next (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:31:71
at new Promise (<anonymous>)
at __awaiter (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:27:12)
at process.cleanup (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:239:12)
at process.emit (node:events:514:28)
at process.emit (node:domain:488:12)
at process.emit.sharedData.processEmitHook.installedValue [as emit] (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@cspotcode/source-map-support/source-map-support.js:745:40)
Error message: missing revert data in call exception; Transaction reverted without a reason string [ See: https://links.ethers.org/v5-errors-CALL_EXCEPTION ] (data="0x", transaction={"from":"0x1b8AfD0DE8a9368ce635Be8B9572c65d8F590B21","to":"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","data":"0xdd62ed3e0000000000000000000000001b8afd0de8a9368ce635be8b9572c65d8f590b210000000000000000000000001e0049783f008a0085193e00003d00cd54003c71","accessList":null}, error={"reason":"missing response","code":"SERVER_ERROR","requestBody":"{\"method\":\"eth_call\",\"params\":[{\"from\":\"0x1b8afd0de8a9368ce635be8b9572c65d8f590b21\",\"to\":\"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2\",\"data\":\"0xdd62ed3e0000000000000000000000001b8afd0de8a9368ce635be8b9572c65d8f590b210000000000000000000000001e0049783f008a0085193e00003d00cd54003c71\"},\"latest\"],\"id\":42,\"jsonrpc\":\"2.0\"}","requestMethod":"POST","serverError":{"errno":-3008,"code":"ENOTFOUND","syscall":"getaddrinfo","hostname":"eth-mainnet.alchemyapi.io"},"url":"https://eth-mainnet.alchemyapi.io/v2/d3348c68-097d-48b5-b5f0-0313cc05e92d"}, code=CALL_EXCEPTION, version=providers/5.7.2)
Error code: CALL_EXCEPTION
ERROR: WALLET 0X1B8AFD0DE8A9368CE635BE8B9572C65D8F590B21 COULD NOT APPROVE THE MAGICEDEN AS A SPENDER. TASK HAS BEEN STOPPED.
[nodemon] restarting due to changes...
[nodemon] starting `node --expose-gc --max-old-space-size=8192 -r ts-node/register/transpile-only src/index.ts`
Limiter initialized with rate limit: 64 requests per second
Successfully connected to Redis
[nodemon] restarting due to changes...
Connected to MongoDB
Error processing OpenSea scheduled bid for task: 67533c499144e39bcc1c7875 ReferenceError: redisKey is not defined
at /Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:1958:36
at Generator.next (<anonymous>)
at fulfilled (/Users/titan/projects/nfttools/bidding-bot/server/src/index.ts:28:58)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
# create wallet in task edit page fails
message: '<!DOCTYPE html>\n' +
'<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en-US"> <![endif]-->\n' +
'<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en-US"> <![endif]-->\n' +
'<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en-US"> <![endif]-->\n' +
'<!--[if gt IE 8]><!--> <html class="no-js" lang="en-US"> <!--<![endif]-->\n' +
'<head>\n' +
'\n' +
'\n' +
'<title>api-mainnet.magiceden.us | 520: Web server is returning an unknown error</title>\n' +
'<meta charset="UTF-8" />\n' +
'<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />\n' +
'<meta http-equiv="X-UA-Compatible" content="IE=Edge" />\n' +
'<meta name="robots" content="noindex, nofollow" />\n' +
'<meta name="viewport" content="width=device-width,initial-scale=1" />\n' +
'<link rel="stylesheet" id="cf_styles-css" href="/cdn-cgi/styles/main.css" />\n' +
'\n' +
'\n' +
'</head>\n' +
'<body>\n' +
'<div id="cf-wrapper">\n' +
' <div id="cf-error-details" class="p-0">\n' +
' <header class="mx-auto pt-10 lg:pt-6 lg:px-8 w-240 lg:w-full mb-8">\n' +
' <h1 class="inline-block sm:block sm:mb-2 font-light text-60 lg:text-4xl text-black-dark leading-tight mr-2">\n' +
' <span class="inline-block">Web server is returning an unknown error</span>\n' +
' <span class="code-label">Error code 520</span>\n' +
' </h1>\n' +
' <div>\n' +
' Visit <a href="https://www.cloudflare.com/5xx-error-landing?utm_source=errorcode_520&utm_campaign=api-mainnet.magiceden.us" target="_blank" rel="noopener noreferrer">cloudflare.com</a> for more information.\n' +
' </div>\n' +
' <div class="mt-3">2024-12-20 08:57:32 UTC</div>\n' +
' </header>\n' +
' <div class="my-8 bg-gradient-gray">\n' +
' <div class="w-240 lg:w-full mx-auto">\n' +
' <div class="clearfix md:px-8">\n' +
' \n' +
'<div id="cf-browser-status" class=" relative w-1/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center">\n' +
' <div class="relative mb-10 md:m-0">\n' +
' \n' +
' <span class="cf-icon-browser block md:hidden h-20 bg-center bg-no-repeat"></span>\n' +
' <span class="cf-icon-ok w-12 h-12 absolute left-1/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4"></span>\n' +
' \n' +
' </div>\n' +
' <span class="md:block w-full truncate">You</span>\n' +
' <h3 class="md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3">\n' +
' \n' +
' Browser\n' +
' \n' +
' </h3>\n' +
' <span class="leading-1.3 text-2xl text-green-success">Working</span>\n' +
'</div>\n' +
'\n' +
'<div id="cf-cloudflare-status" class=" relative w-1/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center">\n' +
' <div class="relative mb-10 md:m-0">\n' +
' <a href="https://www.cloudflare.com/5xx-error-landing?utm_source=errorcode_520&utm_campaign=api-mainnet.magiceden.us" target="_blank" rel="noopener noreferrer">\n' +
' <span class="cf-icon-cloud block md:hidden h-20 bg-center bg-no-repeat"></span>\n' +
' <span class="cf-icon-ok w-12 h-12 absolute left-1/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4"></span>\n' +
' </a>\n' +
' </div>\n' +
' <span class="md:block w-full truncate">San Jose</span>\n' +
' <h3 class="md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3">\n' +
' <a href="https://www.cloudflare.com/5xx-error-landing?utm_source=errorcode_520&utm_campaign=api-mainnet.magiceden.us" target="_blank" rel="noopener noreferrer">\n' +
' Cloudflare\n' +
' </a>\n' +
' </h3>\n' +
' <span class="leading-1.3 text-2xl text-green-success">Working</span>\n' +
'</div>\n' +
'\n' +
'<div id="cf-host-status" class="cf-error-source relative w-1/3 md:w-full py-15 md:p-0 md:py-8 md:text-left md:border-solid md:border-0 md:border-b md:border-gray-400 overflow-hidden float-left md:float-none text-center">\n' +
' <div class="relative mb-10 md:m-0">\n' +
' \n' +
' <span class="cf-icon-server block md:hidden h-20 bg-center bg-no-repeat"></span>\n' +
' <span class="cf-icon-error w-12 h-12 absolute left-1/2 md:left-auto md:right-0 md:top-0 -ml-6 -bottom-4"></span>\n' +
' \n' +
' </div>\n' +
' <span class="md:block w-full truncate">api-mainnet.magiceden.us</span>\n' +
' <h3 class="md:inline-block mt-3 md:mt-0 text-2xl text-gray-600 font-light leading-1.3">\n' +
' \n' +
' Host\n' +
' \n' +
' </h3>\n' +
' <span class="leading-1.3 text-2xl text-red-error">Error</span>\n' +
'</div>\n' +
'\n' +
' </div>\n' +
' </div>\n' +
' </div>\n' +
'\n' +
' <div class="w-240 lg:w-full mx-auto mb-8 lg:px-8">\n' +
' <div class="clearfix">\n' +
' <div class="w-1/2 md:w-full float-left pr-6 md:pb-10 md:pr-0 leading-relaxed">\n' +
' <h2 class="text-3xl font-normal leading-1.3 mb-4">What happened?</h2>\n' +
' <p>There is an unknown connection issue between Cloudflare and the origin web server. As a result, the web page can not be displayed.</p>\n' +
' </div>\n' +
' <div class="w-1/2 md:w-full float-left leading-relaxed">\n' +
' <h2 class="text-3xl font-normal leading-1.3 mb-4">What can I do?</h2>\n' +
' <h3 class="text-15 font-semibold mb-2">If you are a visitor of this website:</h3>\n' +
' <p class="mb-6">Please try again in a few minutes.</p>\n' +
'\n' +
' <h3 class="text-15 font-semibold mb-2">If you are the owner of this website:</h3>\n' +
` <p><span>There is an issue between Cloudflare's cache and your origin web server. Cloudflare monitors for these errors and automatically investigates the cause. To help support the investigation, you can pull the corresponding error log from your web server and submit it our support team. Please include the Ray ID (which is at the bottom of this error page).</span> <a rel="noopener noreferrer" href="https://support.cloudflare.com/hc/en-us/articles/200171936-Error-520">Additional troubleshooting resources</a>.</p>\n` +
' </div>\n' +
' </div>\n' +
' </div>\n' +
'\n' +
' <div class="cf-error-footer cf-wrapper w-240 lg:w-full py-10 sm:py-4 sm:px-8 mx-auto text-center sm:text-left border-solid border-0 border-t border-gray-300">\n' +
' <p class="text-13">\n' +
' <span class="cf-footer-item sm:block sm:mb-1">Cloudflare Ray ID: <strong class="font-semibold">8f4e6ccbdfdecf12</strong></span>\n' +
' <span class="cf-footer-separator sm:hidden">•</span>\n' +
' <span id="cf-footer-item-ip" class="cf-footer-item hidden sm:block sm:mb-1">\n' +
' Your IP:\n' +
' <button type="button" id="cf-footer-ip-reveal" class="cf-footer-ip-reveal-btn">Click to reveal</button>\n' +
' <span class="hidden" id="cf-footer-ip">136.0.207.57</span>\n' +
' <span class="cf-footer-separator sm:hidden">•</span>\n' +
' </span>\n' +
' <span class="cf-footer-item sm:block sm:mb-1"><span>Performance & security by</span> <a rel="noopener noreferrer" href="https://www.cloudflare.com/5xx-error-landing?utm_source=errorcode_520&utm_campaign=api-mainnet.magiceden.us" id="brand_link" target="_blank">Cloudflare</a></span>\n' +
' \n' +
' </p>\n' +
' <script>(function(){function d(){var b=a.getElementById("cf-footer-item-ip"),c=a.getElementById("cf-footer-ip-reveal");b&&"classList"in b&&(b.classList.remove("hidden"),c.addEventListener("click",function(){c.classList.add("hidden");a.getElementById("cf-footer-ip").classList.remove("hidden")}))}var a=document;document.addEventListener&&a.addEventListener("DOMContentLoaded",d)})();</script>\n' +
'</div><!-- /.error-footer -->\n' +
'\n' +
'\n' +
' </div>\n' +
'</div>\n' +
'</body>\n' +
'</html>\n',
status: 520
}
Error: Job 676523c22be962b2b4be2565-pudgypenguins-opensea-364 could not be removed because it is locked by another worker
at Job.remove (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/bullmq/src/classes/job.ts:604:13)
at processTicksAndRejections (node:internal/process/task_queues:95:5)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 36.84 bids/second (1363 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 300 🎉"
Current opensea bid rate: 36.86 bids/second (1364 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Sailor Shirt"} 🎉
Current opensea bid rate: 36.89 bids/second (1365 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 224 🎉"
Current opensea bid rate: 36.92 bids/second (1366 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 256 🎉"
Current opensea bid rate: 36.95 bids/second (1367 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Fur","value":"M1 Dark Brown"} 🎉
Current opensea bid rate: 36.97 bids/second (1368 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M1 Sleeveless Logo T"} 🎉
Current opensea bid rate: 37.00 bids/second (1369 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Fur","value":"M1 Pink"} 🎉
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.03 bids/second (1370 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 292 🎉"
Current opensea bid rate: 37.05 bids/second (1371 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 232 🎉"
Current opensea bid rate: 37.08 bids/second (1372 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Tweed Suit"} 🎉
Current opensea bid rate: 37.11 bids/second (1373 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 253 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.14 bids/second (1374 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 264 🎉"
Current opensea bid rate: 37.16 bids/second (1375 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 223 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.19 bids/second (1376 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Black Holes T"} 🎉
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.22 bids/second (1377 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M1 Sleeveless T"} 🎉
Current opensea bid rate: 37.24 bids/second (1378 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Wool Turtleneck"} 🎉
Current opensea bid rate: 37.27 bids/second (1379 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 254 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.30 bids/second (1380 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 297 🎉"
Current opensea bid rate: 37.32 bids/second (1381 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 257 🎉"
Current opensea bid rate: 37.35 bids/second (1382 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 280 🎉"
Current opensea bid rate: 37.38 bids/second (1383 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 278 🎉"
Current opensea bid rate: 37.41 bids/second (1384 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Caveman Pelt"} 🎉
Current opensea bid rate: 37.43 bids/second (1385 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 238 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.46 bids/second (1386 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 295 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.49 bids/second (1387 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 245 🎉"
Current opensea bid rate: 37.51 bids/second (1388 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 251 🎉"
Current opensea bid rate: 37.54 bids/second (1389 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M1 Bone Necklace"} 🎉
Current opensea bid rate: 37.57 bids/second (1390 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Smoking Jacket"} 🎉
Current opensea bid rate: 37.59 bids/second (1391 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Bayc T Black"} 🎉
Current opensea bid rate: 37.62 bids/second (1392 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Bandolier"} 🎉
Current opensea bid rate: 37.65 bids/second (1393 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 271 🎉"
Current opensea bid rate: 37.68 bids/second (1394 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M1 Kings Robe"} 🎉
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 36.71 bids/second (1395 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 267 🎉"
Current opensea bid rate: 36.74 bids/second (1396 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Kings Robe"} 🎉
Current opensea bid rate: 36.76 bids/second (1397 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Prison Jumpsuit"} 🎉
Current opensea bid rate: 36.79 bids/second (1398 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 286 🎉"
Current opensea bid rate: 36.82 bids/second (1399 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Sleeveless Logo T"} 🎉
Current opensea bid rate: 36.84 bids/second (1400 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 262 🎉"
Current opensea bid rate: 36.87 bids/second (1401 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 266 🎉"
Current opensea bid rate: 36.89 bids/second (1402 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 298 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 36.92 bids/second (1403 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Fur","value":"M2 Brown"} 🎉
Current opensea bid rate: 36.95 bids/second (1404 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 296 🎉"
Current opensea bid rate: 36.97 bids/second (1405 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 260 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.00 bids/second (1406 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 263 🎉"
Current opensea bid rate: 37.03 bids/second (1407 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Fur","value":"M1 Tan"} 🎉
Current opensea bid rate: 37.05 bids/second (1408 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 287 🎉"
Current opensea bid rate: 37.08 bids/second (1409 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 225 🎉"
Current opensea bid rate: 37.11 bids/second (1410 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 265 🎉"
Current opensea bid rate: 37.13 bids/second (1411 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 229 🎉"
Current opensea bid rate: 37.16 bids/second (1412 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 274 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.18 bids/second (1413 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 247 🎉"
Current opensea bid rate: 37.21 bids/second (1414 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M1 Pimp Coat"} 🎉
Current opensea bid rate: 37.24 bids/second (1415 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 281 🎉"
Current opensea bid rate: 37.26 bids/second (1416 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 273 🎉"
Current opensea bid rate: 37.29 bids/second (1417 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 270 🎉"
Current opensea bid rate: 37.32 bids/second (1418 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 255 🎉"
Current opensea bid rate: 37.34 bids/second (1419 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 289 🎉"
Current opensea bid rate: 37.37 bids/second (1420 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 259 🎉"
Current opensea bid rate: 37.39 bids/second (1421 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M1 Prison Jumpsuit"} 🎉
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.42 bids/second (1422 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M1 Tie Dye"} 🎉
Current opensea bid rate: 37.45 bids/second (1423 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 276 🎉"
Current opensea bid rate: 37.47 bids/second (1424 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 283 🎉"
Current opensea bid rate: 37.50 bids/second (1425 bids in last 60s)
🎉 TRAIT OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MUTANT-APE-YACHT-CLUB TRAIT: {"type":"Clothes","value":"M2 Striped Tee"} 🎉
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Current opensea bid rate: 37.53 bids/second (1426 bids in last 60s)
"🎉 TOKEN OFFER POSTED TO OPENSEA SUCCESSFULLY FOR: MEMELANDCAPTAINZ TOKEN: 217 🎉"
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {
reason: 'invalid arrayify value',
code: 'INVALID_ARGUMENT',
argument: 'value',
value: '-1'
}
Error signing the cancel order message for order hash: -1 Error: invalid arrayify value (argument="value", value="-1", code=INVALID_ARGUMENT, version=bytes/5.7.0)
at Logger.makeError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:269:28)
at Logger.throwError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:281:20)
at Logger.throwArgumentError (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/logger/src.ts/index.ts:285:21)
at arrayify (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/bytes/src.ts/index.ts:141:19)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:117:39
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:293:57
at Array.map (<anonymous>)
at /Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:292:39
at TypedDataEncoder.encodeData (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:314:37)
at TypedDataEncoder.hashStruct (/Users/titan/projects/nfttools/bidding-bot/server/node_modules/@ethersproject/hash/src.ts/typed-data.ts:318:31) {