forked from helium/helium-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
15669 lines (14166 loc) · 529 KB
/
yarn.lock
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
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 6
cacheKey: 8
"@aashutoshrathi/word-wrap@npm:^1.2.3":
version: 1.2.6
resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
languageName: node
linkType: hard
"@algolia/autocomplete-core@npm:^1.9.2":
version: 1.17.0
resolution: "@algolia/autocomplete-core@npm:1.17.0"
dependencies:
"@algolia/autocomplete-plugin-algolia-insights": 1.17.0
"@algolia/autocomplete-shared": 1.17.0
checksum: 326035fbdc055c823be145724e7934ae7ddd3629da1dd869a6ba8bab9547235b96339c1ec977bab31a8dcf36a39564653b80bed9a1ad1783b6ccf5545ba7e992
languageName: node
linkType: hard
"@algolia/autocomplete-plugin-algolia-insights@npm:1.17.0":
version: 1.17.0
resolution: "@algolia/autocomplete-plugin-algolia-insights@npm:1.17.0"
dependencies:
"@algolia/autocomplete-shared": 1.17.0
peerDependencies:
search-insights: ">= 1 < 3"
checksum: ab32c31ab43cadb2bfe9b304e959f1afb6584bb2f0fa618637a3d75fd7c450eff731eb31a89157a3b4a630b6dbb222f2df480dfd8f931a6f978f1c95eb1c47d2
languageName: node
linkType: hard
"@algolia/autocomplete-shared@npm:1.17.0":
version: 1.17.0
resolution: "@algolia/autocomplete-shared@npm:1.17.0"
peerDependencies:
"@algolia/client-search": ">= 4.9.1 < 6"
algoliasearch: ">= 4.9.1 < 6"
checksum: a5bccecd50c770bca34263631a280332c5884a2a2879b27fadd5ef3dc78425db697c0cf54b11da9c84565bfe10d0b3cc4be46742e798619011c41c5e6297c821
languageName: node
linkType: hard
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: bdc35758b552bcf045733ac047fb7f9a07c4678b944c641adfbd41f798b4b91fffd0fdc0df2578d9b0afc7b4d636aa6e110ead5d6281a2adc1ab90efd7f057f8
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0":
version: 7.22.13
resolution: "@babel/code-frame@npm:7.22.13"
dependencies:
"@babel/highlight": "npm:^7.22.13"
chalk: "npm:^2.4.2"
checksum: 22e342c8077c8b77eeb11f554ecca2ba14153f707b85294fcf6070b6f6150aae88a7b7436dd88d8c9289970585f3fe5b9b941c5aa3aa26a6d5a8ef3f292da058
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 7f0f30113474a28298c12161763b49de5018732290ca4de13cdaefd4fd0d635a6fe3f6686c37a02905fb1e64f21a5ee2b55140cf7b070e729f1bd66866506aea
languageName: node
linkType: hard
"@babel/highlight@npm:^7.22.13":
version: 7.22.13
resolution: "@babel/highlight@npm:7.22.13"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.22.5"
chalk: "npm:^2.4.2"
js-tokens: "npm:^4.0.0"
checksum: 7266d2bff8aa8fc78eb65b6e92a8211e12897a731126a282d2f9bb50d8fcaa4c1b02af2284f990ac7e3ab8d892d448a2cab8f5ed0ea8a90bce2c025b11ebe802
languageName: node
linkType: hard
"@babel/runtime@npm:^7.10.5, @babel/runtime@npm:^7.17.2, @babel/runtime@npm:^7.22.6":
version: 7.22.11
resolution: "@babel/runtime@npm:7.22.11"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: a5cd6683a8fcdb8065cb1677f221e22f6c67ec8f15ad1d273b180b93ab3bd86c66da2c48f500d4e72d8d2cfa85ff4872a3f350e5aa3855630036af5da765c001
languageName: node
linkType: hard
"@babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.24.7":
version: 7.24.7
resolution: "@babel/runtime@npm:7.24.7"
dependencies:
regenerator-runtime: ^0.14.0
checksum: d17f29eed6f848ac15cdf4202a910b741facfb0419a9d79e5c7fa37df6362fc3227f1cc2e248cc6db5e53ddffb4caa6686c488e6e80ce3d29c36a4e74c8734ea
languageName: node
linkType: hard
"@babel/runtime@npm:^7.15.4":
version: 7.23.1
resolution: "@babel/runtime@npm:7.23.1"
dependencies:
regenerator-runtime: "npm:^0.14.0"
checksum: 0cd0d43e6e7dc7f9152fda8c8312b08321cda2f56ef53d6c22ebdd773abdc6f5d0a69008de90aa41908d00e2c1facb24715ff121274e689305c858355ff02c70
languageName: node
linkType: hard
"@babel/runtime@npm:^7.23.2, @babel/runtime@npm:^7.23.4":
version: 7.24.1
resolution: "@babel/runtime@npm:7.24.1"
dependencies:
regenerator-runtime: ^0.14.0
checksum: 5c8f3b912ba949865f03b3cf8395c60e1f4ebd1033fbd835bdfe81b6cac8a87d85bc3c7aded5fcdf07be044c9ab8c818f467abe0deca50020c72496782639572
languageName: node
linkType: hard
"@bufbuild/protobuf@npm:^1.7.2":
version: 1.7.2
resolution: "@bufbuild/protobuf@npm:1.7.2"
checksum: f91e2574c97a64cceba04f7e697279fee621eb76cf5d049047184e3d08bd2c52d4a7e9afbe8560cfd49948bd61a24dc9013d6ca56fc10302e948de09afd7acff
languageName: node
linkType: hard
"@clockwork-xyz/sdk@npm:^0.3.0":
version: 0.3.4
resolution: "@clockwork-xyz/sdk@npm:0.3.4"
dependencies:
"@coral-xyz/anchor": "npm:^0.26.0"
"@solana/web3.js": "npm:^1.73.2"
checksum: 4efed5407ac333c85697831f71729b252d1e4a03239a50055580e6635d12bc7c6063f2b97659407d9606953b44492ef2454dcc7dc079299a32f934132784ea2d
languageName: node
linkType: hard
"@connectrpc/connect-node@npm:^1.3.0":
version: 1.3.0
resolution: "@connectrpc/connect-node@npm:1.3.0"
dependencies:
undici: ^5.28.2
peerDependencies:
"@bufbuild/protobuf": ^1.4.2
"@connectrpc/connect": 1.3.0
checksum: 4e53cc5057b9a2fbd533e2209833881a0e27dc9079c3f56566eedf5667978436d9aaf1bb6d0509874d627dbd4491413eff8e5bad06c50ff049eed824a5a2e1e3
languageName: node
linkType: hard
"@connectrpc/connect@npm:^1.3.0":
version: 1.3.0
resolution: "@connectrpc/connect@npm:1.3.0"
peerDependencies:
"@bufbuild/protobuf": ^1.4.2
checksum: a68bfffedd817a7db3563c00e5efc5eb510cc00a93c722d81fa1f52b71a96300d7175b0c0710a9d2ef2e8aaabee36921c90470a80343e7a9fbccffd3cc83f868
languageName: node
linkType: hard
"@coral-xyz/anchor-cli@npm:^0.28.0":
version: 0.28.0
resolution: "@coral-xyz/anchor-cli@npm:0.28.0"
bin:
anchor: anchor.js
checksum: a0168febb2c6b348291d1ecd80fc19b403d4039557abd636f4317f3587c52e818e8836cc2d385f28b32d7e215f2e79b37b3b686d8f633262701105ae39929896
languageName: node
linkType: hard
"@coral-xyz/anchor@npm:^0.26.0":
version: 0.26.0
resolution: "@coral-xyz/anchor@npm:0.26.0"
dependencies:
"@coral-xyz/borsh": "npm:^0.26.0"
"@solana/web3.js": "npm:^1.68.0"
base64-js: "npm:^1.5.1"
bn.js: "npm:^5.1.2"
bs58: "npm:^4.0.1"
buffer-layout: "npm:^1.2.2"
camelcase: "npm:^6.3.0"
cross-fetch: "npm:^3.1.5"
crypto-hash: "npm:^1.3.0"
eventemitter3: "npm:^4.0.7"
js-sha256: "npm:^0.9.0"
pako: "npm:^2.0.3"
snake-case: "npm:^3.0.4"
superstruct: "npm:^0.15.4"
toml: "npm:^3.0.0"
checksum: 1e637b28181a42ce0aa4ed2853b7c563d4763f01e330cd12572b70d5dc830956e33d19a83afba09846b265db615f8ef1dc4a67d77865418c44ca8839d375a56f
languageName: node
linkType: hard
"@coral-xyz/anchor@npm:^0.28.0":
version: 0.28.0
resolution: "@coral-xyz/anchor@npm:0.28.0"
dependencies:
"@coral-xyz/borsh": "npm:^0.28.0"
"@solana/web3.js": "npm:^1.68.0"
base64-js: "npm:^1.5.1"
bn.js: "npm:^5.1.2"
bs58: "npm:^4.0.1"
buffer-layout: "npm:^1.2.2"
camelcase: "npm:^6.3.0"
cross-fetch: "npm:^3.1.5"
crypto-hash: "npm:^1.3.0"
eventemitter3: "npm:^4.0.7"
js-sha256: "npm:^0.9.0"
pako: "npm:^2.0.3"
snake-case: "npm:^3.0.4"
superstruct: "npm:^0.15.4"
toml: "npm:^3.0.0"
checksum: 58b3677b5b2ce2c779045184ce4a0ef696966a6a58f41c1c56f6f178db0491acecb6ec677ce0502f0b382a2c724f9c2860d82cc88601784d556d95fbeda415e5
languageName: node
linkType: hard
"@coral-xyz/anchor@npm:^0.28.1-beta.1":
version: 0.28.1-beta.2
resolution: "@coral-xyz/anchor@npm:0.28.1-beta.2"
dependencies:
"@coral-xyz/borsh": "npm:^0.28.0"
"@noble/hashes": "npm:^1.3.1"
"@solana/web3.js": "npm:^1.68.0"
base64-js: "npm:^1.5.1"
bn.js: "npm:^5.1.2"
bs58: "npm:^4.0.1"
buffer-layout: "npm:^1.2.2"
camelcase: "npm:^6.3.0"
cross-fetch: "npm:^3.1.5"
crypto-hash: "npm:^1.3.0"
eventemitter3: "npm:^4.0.7"
pako: "npm:^2.0.3"
snake-case: "npm:^3.0.4"
superstruct: "npm:^0.15.4"
toml: "npm:^3.0.0"
checksum: 5d286277b7401105c77cea2c83758e0dedbf583377593e4546a97024d83dd1279d43cef37c7162c948d79421bfd995fb19e11680581aa1e00ddf20221411aaa8
languageName: node
linkType: hard
"@coral-xyz/anchor@npm:^0.29.0":
version: 0.29.0
resolution: "@coral-xyz/anchor@npm:0.29.0"
dependencies:
"@coral-xyz/borsh": ^0.29.0
"@noble/hashes": ^1.3.1
"@solana/web3.js": ^1.68.0
bn.js: ^5.1.2
bs58: ^4.0.1
buffer-layout: ^1.2.2
camelcase: ^6.3.0
cross-fetch: ^3.1.5
crypto-hash: ^1.3.0
eventemitter3: ^4.0.7
pako: ^2.0.3
snake-case: ^3.0.4
superstruct: ^0.15.4
toml: ^3.0.0
checksum: 10c4e6c5557653419683f5ae22ec47ac266b64e5b422d466885cf2dc7efa8f836239bdf321495d3e2b3ce03e766667c0e2192cc573fbd66bc12cc652f5146e10
languageName: node
linkType: hard
"@coral-xyz/borsh@npm:^0.2.6":
version: 0.2.6
resolution: "@coral-xyz/borsh@npm:0.2.6"
dependencies:
bn.js: "npm:^5.1.2"
buffer-layout: "npm:^1.2.0"
peerDependencies:
"@solana/web3.js": ^1.2.0
checksum: 9d8bff33171d1e14394a99272dcc256984d4e9f9c0ceea369039e3a7bc22daef4a6376d3322fee20b2b1d1c407bfc32eb80ceadaa00da873004006f31ea89fe4
languageName: node
linkType: hard
"@coral-xyz/borsh@npm:^0.26.0":
version: 0.26.0
resolution: "@coral-xyz/borsh@npm:0.26.0"
dependencies:
bn.js: "npm:^5.1.2"
buffer-layout: "npm:^1.2.0"
peerDependencies:
"@solana/web3.js": ^1.68.0
checksum: 8418264ec64f926264adfaa9cff2323a7675b0df3b06b30043d256f1f3ed8fa68d6268f93600656a1ddcb953032ab41674f04e2387504f32d041b75fa3152a30
languageName: node
linkType: hard
"@coral-xyz/borsh@npm:^0.28.0":
version: 0.28.0
resolution: "@coral-xyz/borsh@npm:0.28.0"
dependencies:
bn.js: "npm:^5.1.2"
buffer-layout: "npm:^1.2.0"
peerDependencies:
"@solana/web3.js": ^1.68.0
checksum: bc2b06b777f9ed43d3b886d2350826bd44d5b932c4fd4471af5956e8755236f5854938c890ee4986d88f61d1439e1d84e715c43dcb6dca4e76198c1ce8dc7a58
languageName: node
linkType: hard
"@coral-xyz/borsh@npm:^0.29.0":
version: 0.29.0
resolution: "@coral-xyz/borsh@npm:0.29.0"
dependencies:
bn.js: ^5.1.2
buffer-layout: ^1.2.0
peerDependencies:
"@solana/web3.js": ^1.68.0
checksum: 37006c75cd012672adf48e10234062624634da2a9335e34b7ff30969f58aff78cc3073b66a3edc806b52f038469f0c477a5a3ed35aaa075f3cbd44d7133ac218
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 5718f267085ed8edb3e7ef210137241775e607ee18b77d95aa5bd7514f47f5019aa2d82d96b3bf342ef7aa890a346fa1044532ff7cc3009e7d24fce3ce6200fa
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^1.3.3":
version: 1.4.1
resolution: "@eslint/eslintrc@npm:1.4.1"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.4.0
globals: ^13.19.0
ignore: ^5.2.0
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.1.2
strip-json-comments: ^3.1.1
checksum: cd3e5a8683db604739938b1c1c8b77927dc04fce3e28e0c88e7f2cd4900b89466baf83dfbad76b2b9e4d2746abdd00dd3f9da544d3e311633d8693f327d04cd7
languageName: node
linkType: hard
"@fastify/accept-negotiator@npm:^1.0.0":
version: 1.1.0
resolution: "@fastify/accept-negotiator@npm:1.1.0"
checksum: 5c8f263680af0aece8c1fdea4d4c094a7f82cc5ed90b709357eb52a01e3388d1ac74a17e5a1d5d53f2d3ca93ae50d283ee451a6435b2cbe1b9847fff4d7d0732
languageName: node
linkType: hard
"@fastify/ajv-compiler@npm:^3.5.0":
version: 3.5.0
resolution: "@fastify/ajv-compiler@npm:3.5.0"
dependencies:
ajv: "npm:^8.11.0"
ajv-formats: "npm:^2.1.1"
fast-uri: "npm:^2.0.0"
checksum: 5e5b16469f8d586473d0b32e3a9cf38c0d86ef2a6fb7ea12ed7f3665642bd8eb2dde9adcc317814369cb5a58210bfdac35996fa87d1cc23e88bbc799f0b128b0
languageName: node
linkType: hard
"@fastify/busboy@npm:^2.0.0":
version: 2.1.0
resolution: "@fastify/busboy@npm:2.1.0"
checksum: 3233abd10f73e50668cb4bb278a79b7b3fadd30215ac6458299b0e5a09a29c3586ec07597aae6bd93f5cbedfcef43a8aeea51829cd28fc13850cdbcd324c28d5
languageName: node
linkType: hard
"@fastify/cors@npm:^8.1.1":
version: 8.3.0
resolution: "@fastify/cors@npm:8.3.0"
dependencies:
fastify-plugin: "npm:^4.0.0"
mnemonist: "npm:0.39.5"
checksum: f487b5a8823264c3db58e99df020e38ada524514d60f2c5c2e01b994519545e2fc9481006d98e485b40e536b9b89f72af9061d9377b8e93f6ce07b14d40164a2
languageName: node
linkType: hard
"@fastify/deepmerge@npm:^1.0.0":
version: 1.3.0
resolution: "@fastify/deepmerge@npm:1.3.0"
checksum: 33ec927905dca320d7ae9535a1521909f7c82339706345324ab6287ad100589a799b8257c15b0e582c7bb74e2aa4883d82ba0228d7b116aa8789ada4f78d6974
languageName: node
linkType: hard
"@fastify/error@npm:^3.2.0":
version: 3.3.0
resolution: "@fastify/error@npm:3.3.0"
checksum: 202507c8c7f49922cac2f5afc82802151b0bd9c583ca1c2850bf43d0f4cd97eedb3a3388b9016da74f8a01b517a5861d1f666c506dd64fd22995e559bc139264
languageName: node
linkType: hard
"@fastify/fast-json-stringify-compiler@npm:^4.3.0":
version: 4.3.0
resolution: "@fastify/fast-json-stringify-compiler@npm:4.3.0"
dependencies:
fast-json-stringify: "npm:^5.7.0"
checksum: 2734afabe2539d3e15d2bd9f8dfee756d9cd969f7303dc085dd91c744ff61742bb0d3ebd3b561cf3c32be54567048a634b4962f943eb6bd9ed3fbd71cbf6a4fa
languageName: node
linkType: hard
"@fastify/send@npm:^2.0.0":
version: 2.1.0
resolution: "@fastify/send@npm:2.1.0"
dependencies:
"@lukeed/ms": ^2.0.1
escape-html: ~1.0.3
fast-decode-uri-component: ^1.0.1
http-errors: 2.0.0
mime: ^3.0.0
checksum: c0eeddd35c53167e41ee7c25ccbb964e5a1e4a17c827da6486db656581f83f162237d6f8104b698a4a136d8ea054f2d028bfa4c7d1c4126db51584680f43e1f1
languageName: node
linkType: hard
"@fastify/static@npm:^6":
version: 6.12.0
resolution: "@fastify/static@npm:6.12.0"
dependencies:
"@fastify/accept-negotiator": ^1.0.0
"@fastify/send": ^2.0.0
content-disposition: ^0.5.3
fastify-plugin: ^4.0.0
glob: ^8.0.1
p-limit: ^3.1.0
checksum: 1ba2f88665baddc9e67c7ea8aee401b5ec8c207e7fd615b2e68246a7ee2cafcc75e66b66d901abb154566fa7132af2319cd00e15350ed57936b74ee10c8eb9c7
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 4059f790e2d07bf3c3ff3e0fec0daa8144fe35c1f6e0111c9921bd32106adaa97a4ab096ad7dab1e28ee6a9060083c4d1a4ada42a7f5f3f7a96b8812e2b757c1
languageName: node
linkType: hard
"@grpc/grpc-js@npm:^1.10.1":
version: 1.10.1
resolution: "@grpc/grpc-js@npm:1.10.1"
dependencies:
"@grpc/proto-loader": ^0.7.8
"@types/node": ">=12.12.47"
checksum: 5842c1c3ffcb630a1ee45998733861a16f8f6db4fe78f317f6be25ddf581040dc38e8c09aed7073dfae1a7099a3c83658ca8f3db77c0bc3b0e40625618245bd0
languageName: node
linkType: hard
"@grpc/grpc-js@npm:^1.8.0, @grpc/grpc-js@npm:^1.8.13":
version: 1.10.9
resolution: "@grpc/grpc-js@npm:1.10.9"
dependencies:
"@grpc/proto-loader": ^0.7.13
"@js-sdsl/ordered-map": ^4.4.2
checksum: 88d91c227175275d8cc178c807d09510a83d947911c9bfe8ccd132cb27144c54508bcd114d52ab00b6e4f37eecf74aeee3ef3971900bdb90735d55a0b0dba761
languageName: node
linkType: hard
"@grpc/proto-loader@npm:^0.7.13":
version: 0.7.13
resolution: "@grpc/proto-loader@npm:0.7.13"
dependencies:
lodash.camelcase: ^4.3.0
long: ^5.0.0
protobufjs: ^7.2.5
yargs: ^17.7.2
bin:
proto-loader-gen-types: build/bin/proto-loader-gen-types.js
checksum: 399c1b8a4627f93dc31660d9636ea6bf58be5675cc7581e3df56a249369e5be02c6cd0d642c5332b0d5673bc8621619bc06fb045aa3e8f57383737b5d35930dc
languageName: node
linkType: hard
"@grpc/proto-loader@npm:^0.7.8":
version: 0.7.10
resolution: "@grpc/proto-loader@npm:0.7.10"
dependencies:
lodash.camelcase: ^4.3.0
long: ^5.0.0
protobufjs: ^7.2.4
yargs: ^17.7.2
bin:
proto-loader-gen-types: build/bin/proto-loader-gen-types.js
checksum: 4987e23b57942c2363b6a6a106e63efae636666cefa348778dfafef2ff72da7343c8587667521cb1d52482827bcd001dd535bdc27065110af56d9c7c176334c9
languageName: node
linkType: hard
"@headlessui/react@npm:^1.7.13":
version: 1.7.18
resolution: "@headlessui/react@npm:1.7.18"
dependencies:
"@tanstack/react-virtual": ^3.0.0-beta.60
client-only: ^0.0.1
peerDependencies:
react: ^16 || ^17 || ^18
react-dom: ^16 || ^17 || ^18
checksum: 7463167b4cf2ad57f92c2deedd6429a245dfc4d979ead5533d2e83429e3e4dd39c346e5a8fd958e6bd9e2fba42486af97577b7dd3137f5a797dacc93632578ba
languageName: node
linkType: hard
"@helium/account-fetch-cache-hooks@^0.9.6, @helium/account-fetch-cache-hooks@workspace:packages/account-fetch-cache-hooks":
version: 0.0.0-use.local
resolution: "@helium/account-fetch-cache-hooks@workspace:packages/account-fetch-cache-hooks"
dependencies:
"@helium/account-fetch-cache": ^0.9.6
"@solana/web3.js": ^1.78.8
git-format-staged: ^2.1.3
react-async-hook: ^4.0.0
ts-loader: ^9.2.3
typescript: ^5.2.2
peerDependencies:
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
languageName: unknown
linkType: soft
"@helium/account-fetch-cache-hooks@npm:^0.5.0":
version: 0.5.0
resolution: "@helium/account-fetch-cache-hooks@npm:0.5.0"
dependencies:
"@helium/account-fetch-cache": ^0.5.0
"@solana/web3.js": ^1.78.4
react-async-hook: ^4.0.0
peerDependencies:
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
checksum: a71679ac7d66f201a29db27241ff0642d3ee1717afe5118b4854fc5362b1d6cd26854ca09795b46ba34df1d7baa475bfe57ec65998bbd4e98dec5d1fc2d2c4c9
languageName: node
linkType: hard
"@helium/account-fetch-cache@^0.9.6, @helium/account-fetch-cache@workspace:packages/account-fetch-cache":
version: 0.0.0-use.local
resolution: "@helium/account-fetch-cache@workspace:packages/account-fetch-cache"
dependencies:
"@solana/web3.js": ^1.78.8
git-format-staged: ^2.1.3
ts-loader: ^9.2.3
typescript: ^5.2.2
languageName: unknown
linkType: soft
"@helium/account-fetch-cache@npm:^0.5.0":
version: 0.5.0
resolution: "@helium/account-fetch-cache@npm:0.5.0"
dependencies:
"@solana/web3.js": ^1.78.4
checksum: a6b97424eff96240a0fbe8f7b2890432cb0f4a9ed0a369506c0f6905e8879f4ad13a82a9093ebe005c062bfdedce6e37f03b5bc569a184acbba22ac7d9d8c6dc
languageName: node
linkType: hard
"@helium/account-postgres-sink-service@workspace:packages/account-postgres-sink-service":
version: 0.0.0-use.local
resolution: "@helium/account-postgres-sink-service@workspace:packages/account-postgres-sink-service"
dependencies:
"@bufbuild/protobuf": ^1.7.2
"@connectrpc/connect": ^1.3.0
"@connectrpc/connect-node": ^1.3.0
"@coral-xyz/anchor": ^0.28.0
"@fastify/cors": ^8.1.1
"@helium/account-fetch-cache": ^0.9.6
"@metaplex-foundation/mpl-token-metadata": ^2.10.0
"@solana/web3.js": ^1.78.8
"@substreams/core": ^0.15.1
"@triton-one/yellowstone-grpc": ^0.4.0
"@types/async-retry": ^1.4.8
"@types/bn.js": ^5.1.1
"@types/cron": ^2.4.0
"@types/deep-equal": ^1.0.1
"@types/lodash": ^4.14.195
"@types/node": ^18.11.11
"@types/pg": ^8.6.6
"@types/yargs": ^17.0.24
async-retry: ^1.3.3
aws-sdk: ^2.1344.0
axios: ^1.3.6
axios-retry: ^3.8.0
bloom-filters: ^3.0.1
bn.js: ^5.2.0
bs58: ^4.0.1
cron: ^3.1.6
deep-equal: ^2.2.2
dotenv: ^16.3.1
fastify: ^4.13.0
fastify-cron: ^1.3.1
fastify-metrics: ^10.3.0
fastify-plugin: ^4.5.1
git-format-staged: ^2.1.3
h3-js: ^4.1.0
http-status-codes: ^2.2.0
inflection: ^3.0.0
kafkajs: ^2.2.4
lodash: ^4.17.21
p-limit: 3.1.0
pg: ^8.9.0
prom-client: ^14.2.0
sequelize: ^6.28.0
ts-loader: ^9.2.3
ts-node: ^10.9.1
ts-node-dev: ^2.0.0
typescript: ^5.2.2
yargs: ^17.7.1
languageName: unknown
linkType: soft
"@helium/active-device-oracle@workspace:packages/active-device-oracle":
version: 0.0.0-use.local
resolution: "@helium/active-device-oracle@workspace:packages/active-device-oracle"
dependencies:
"@fastify/cors": ^8.1.1
"@types/node": ^18.11.11
fastify: ^4.13.0
git-format-staged: ^2.1.3
ts-loader: ^9.2.3
ts-node: ^10.9.1
ts-node-dev: ^2.0.0
typescript: ^5.2.2
languageName: unknown
linkType: soft
"@helium/address@npm:^4.10.2":
version: 4.10.2
resolution: "@helium/address@npm:4.10.2"
dependencies:
bs58: "npm:^5.0.0"
js-sha256: "npm:^0.9.0"
multiformats: "npm:^9.6.4"
checksum: 4d83df57c638ed1496a92241a2f45da671e11b6397f02ab65c5281cbd1a435548e7ffd5be969d8d214b5af045e9be4bdd2d89f41744289c17e6410d458b03bcc
languageName: node
linkType: hard
"@helium/anchor-resolvers@^0.9.6, @helium/anchor-resolvers@workspace:packages/anchor-resolvers":
version: 0.0.0-use.local
resolution: "@helium/anchor-resolvers@workspace:packages/anchor-resolvers"
dependencies:
"@solana/spl-token": ^0.3.8
"@solana/web3.js": ^1.78.8
git-format-staged: ^2.1.3
ts-loader: ^9.2.3
typescript: ^5.2.2
peerDependencies:
"@coral-xyz/anchor": ^0.28.0
languageName: unknown
linkType: soft
"@helium/anchor-resolvers@npm:^0.2.17":
version: 0.2.21
resolution: "@helium/anchor-resolvers@npm:0.2.21"
dependencies:
"@solana/spl-token": "npm:^0.3.6"
"@solana/web3.js": "npm:^1.43.4"
peerDependencies:
"@coral-xyz/anchor": ^0.26.0
checksum: b8639d000c7a95f47810e62b31e3fd5795ba2152310a0047dc80e09191cd8b56a949eea223f00902c2fcabe47f17090fa2b49b8386d90cd98dded6612992443f
languageName: node
linkType: hard
"@helium/anchor-resolvers@npm:^0.5.0":
version: 0.5.0
resolution: "@helium/anchor-resolvers@npm:0.5.0"
dependencies:
"@solana/spl-token": ^0.3.8
"@solana/web3.js": ^1.78.4
peerDependencies:
"@coral-xyz/anchor": ^0.28.0
checksum: b20f52072bb8e1cb097e951c98a66149989035a58d3f4de1998c3043a1e04e36b6dee2e0760b99d0fbd5fa4e47f499972ad17f6560e1f3c7424e96a1e35343a9
languageName: node
linkType: hard
"@helium/circuit-breaker-sdk@^0.9.6, @helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk":
version: 0.0.0-use.local
resolution: "@helium/circuit-breaker-sdk@workspace:packages/circuit-breaker-sdk"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/anchor-resolvers": ^0.9.6
"@helium/idls": ^0.9.6
bn.js: ^5.2.0
bs58: ^4.0.1
git-format-staged: ^2.1.3
ts-loader: ^9.2.3
ts-node: ^10.9.1
typescript: ^5.2.2
languageName: unknown
linkType: soft
"@helium/crons@workspace:packages/crons":
version: 0.0.0-use.local
resolution: "@helium/crons@workspace:packages/crons"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/account-fetch-cache": ^0.9.6
"@helium/distributor-oracle": ^0.9.6
"@helium/fanout-sdk": ^0.9.6
"@helium/helium-entity-manager-sdk": ^0.9.6
"@helium/helium-sub-daos-sdk": ^0.9.6
"@helium/idls": ^0.9.6
"@helium/lazy-distributor-sdk": ^0.9.6
"@helium/mobile-entity-manager-sdk": ^0.9.6
"@helium/nft-proxy-sdk": ^0.0.12
"@helium/no-emit-sdk": ^0.9.6
"@helium/organization-sdk": ^0.0.12
"@helium/price-oracle-sdk": ^0.9.6
"@helium/proposal-sdk": ^0.0.12
"@helium/rewards-oracle-sdk": ^0.9.6
"@helium/spl-utils": ^0.9.6
"@helium/state-controller-sdk": ^0.0.12
"@helium/treasury-management-sdk": ^0.9.6
"@helium/voter-stake-registry-sdk": ^0.9.6
"@solana/spl-token": ^0.3.8
"@solana/web3.js": ^1.78.8
"@types/bn.js": ^5.1.0
"@types/bs58": ^4.0.1
"@types/yargs": ^17.0.24
axios: ^1.3.6
bn.js: ^5.2.0
bs58: ^4.0.1
git-format-staged: ^2.1.3
p-limit: 3.1.0
ts-loader: ^9.2.3
ts-node: ^10.9.1
typescript: ^5.2.2
yargs: ^17.7.1
languageName: unknown
linkType: soft
"@helium/crypto@npm:^3.60.0":
version: 3.60.0
resolution: "@helium/crypto@npm:3.60.0"
dependencies:
bs58: "npm:^4.0.1"
create-hash: "npm:^1.2.0"
libsodium-wrappers: "npm:^0.7.6"
checksum: 7c3dfe49ee5aff1a4f23875435a642717fc8480ab79e54755181258ecbc39ef3d3707deb2a5d0ce6074fbe9f728dc2b0260e2271bed0030c38f85cb630110680
languageName: node
linkType: hard
"@helium/crypto@npm:^4.10.2":
version: 4.10.2
resolution: "@helium/crypto@npm:4.10.2"
dependencies:
"@helium/address": "npm:^4.10.2"
create-hash: "npm:^1.2.0"
libsodium-wrappers: "npm:^0.7.6"
checksum: dec4c672bccf3ff95d747846b36c46c773f9ef7a75072e4c906c4eab9e55fb9289c384ccc47d0c8d4aa8d65f1abb4cfbcb9a118d9118c9f1d304cc646e70e8ef
languageName: node
linkType: hard
"@helium/currency-utils@workspace:packages/currency-utils":
version: 0.0.0-use.local
resolution: "@helium/currency-utils@workspace:packages/currency-utils"
dependencies:
"@solana/spl-token": ^0.3.8
"@solana/web3.js": ^1.78.8
languageName: unknown
linkType: soft
"@helium/data-credits-sdk@^0.9.6, @helium/data-credits-sdk@workspace:packages/data-credits-sdk":
version: 0.0.0-use.local
resolution: "@helium/data-credits-sdk@workspace:packages/data-credits-sdk"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/anchor-resolvers": ^0.9.6
"@helium/circuit-breaker-sdk": ^0.9.6
"@helium/helium-sub-daos-sdk": ^0.9.6
"@helium/idls": ^0.9.6
"@types/crypto-js": ^4.1.1
bn.js: ^5.2.0
bs58: ^4.0.1
crypto-js: ^4.1.1
git-format-staged: ^2.1.3
ts-loader: ^9.2.3
ts-node: ^10.9.1
typescript: ^5.2.2
languageName: unknown
linkType: soft
"@helium/distributor-oracle@^0.9.6, @helium/distributor-oracle@workspace:packages/distributor-oracle":
version: 0.0.0-use.local
resolution: "@helium/distributor-oracle@workspace:packages/distributor-oracle"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@fastify/cors": ^8.1.1
"@helium/account-fetch-cache": ^0.9.6
"@helium/address": ^4.10.2
"@helium/helium-entity-manager-sdk": ^0.9.6
"@helium/helium-sub-daos-sdk": ^0.9.6
"@helium/idls": ^0.9.6
"@helium/lazy-distributor-sdk": ^0.9.6
"@helium/rewards-oracle-sdk": ^0.9.6
"@helium/spl-utils": ^0.9.6
"@metaplex-foundation/mpl-bubblegum": ^0.7.0
"@solana/spl-token": ^0.3.8
"@types/bs58": ^4.0.1
"@types/cors": ^2.8.12
"@types/express": ^4.17.14
"@types/pg": ^8.6.6
"@types/sequelize": ^4.28.14
aws-sdk: ^2.1344.0
axios: ^1.3.6
bn.js: ^5.2.0
bs58: ^4.0.1
cors: ^2.8.5
dotenv: ^16.0.3
fastify: ^4.13.0
git-format-staged: ^2.1.3
ky: ^0.31.4
nodemon: ^2.0.20
pg: ^8.9.0
prom-client: ^15.0.0
sequelize: ^6.28.0
ts-loader: ^9.2.3
ts-node: ^10.9.1
typescript: ^5.2.2
typescript-collections: ^1.3.3
languageName: unknown
linkType: soft
"@helium/entity-invalidator@workspace:packages/entity-invalidator":
version: 0.0.0-use.local
resolution: "@helium/entity-invalidator@workspace:packages/entity-invalidator"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/account-fetch-cache": ^0.9.6
"@helium/helium-entity-manager-sdk": ^0.9.6
"@helium/spl-utils": ^0.9.6
"@solana/web3.js": ^1.78.8
"@types/bn.js": ^5.1.1
"@types/deep-equal": ^1.0.1
"@types/node": ^18.11.11
"@types/pg": ^8.6.6
"@types/uuid": ^9.0.6
"@types/yargs": ^17.0.24
aws-sdk: ^2.1344.0
bn.js: ^5.2.0
bs58: ^4.0.1
git-format-staged: ^2.1.3
pg: ^8.9.0
prom-client: ^14.2.0
sequelize: ^6.28.0
ts-loader: ^9.2.3
ts-node: ^10.9.1
ts-node-dev: ^2.0.0
typescript: ^5.2.2
uuid: ^9.0.1
yargs: ^17.7.1
languageName: unknown
linkType: soft
"@helium/fanout-metadata-service@workspace:packages/fanout-metadata-service":
version: 0.0.0-use.local
resolution: "@helium/fanout-metadata-service@workspace:packages/fanout-metadata-service"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@fastify/cors": ^8.1.1
"@helium/account-fetch-cache": ^0.9.6
"@helium/address": ^4.10.2
"@helium/fanout-sdk": ^0.9.6
"@helium/spl-utils": ^0.9.6
"@metaplex-foundation/mpl-token-metadata": ^2.10.0
"@solana/spl-account-compression": ^0.1.7
"@solana/spl-token": ^0.3.8
"@solana/web3.js": ^1.78.8
"@types/bn.js": ^5.1.1
axios: ^1.3.6
bn.js: ^5.2.0
bs58: ^4.0.1
fastify: ^4.13.0
git-format-staged: ^2.1.3
ts-loader: ^9.2.3
ts-node: ^10.9.1
ts-node-dev: ^2.0.0
typescript: ^5.2.2
languageName: unknown
linkType: soft
"@helium/fanout-sdk@^0.9.6, @helium/fanout-sdk@workspace:packages/fanout-sdk":
version: 0.0.0-use.local
resolution: "@helium/fanout-sdk@workspace:packages/fanout-sdk"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/anchor-resolvers": ^0.9.6
"@helium/idls": ^0.9.6
bn.js: ^5.2.0
bs58: ^4.0.1
git-format-staged: ^2.1.3
ts-loader: ^9.2.3
ts-node: ^10.9.1
typescript: ^5.2.2
languageName: unknown
linkType: soft
"@helium/faucet-service@workspace:packages/faucet-service":
version: 0.0.0-use.local
resolution: "@helium/faucet-service@workspace:packages/faucet-service"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@fastify/cors": ^8.1.1
"@helium/idls": ^0.9.6
"@helium/spl-utils": ^0.9.6
"@metaplex-foundation/mpl-token-metadata": ^2.10.0
"@solana/spl-token": ^0.3.8
"@solana/web3.js": ^1.78.8
"@types/bn.js": ^5.1.1
angry-purple-tiger: ^1.0.5
axios: ^1.3.6
bn.js: ^5.2.0
bs58: ^4.0.1
fastify: ^4.13.0
git-format-staged: ^2.1.3
pg: ^8.9.0
sequelize: ^6.28.0
ts-loader: ^9.2.3
ts-node: ^10.9.1
ts-node-dev: ^2.0.0
typescript: ^5.2.2
languageName: unknown
linkType: soft
"@helium/helium-admin-cli@workspace:packages/helium-admin-cli":
version: 0.0.0-use.local
resolution: "@helium/helium-admin-cli@workspace:packages/helium-admin-cli"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/address": ^4.10.2
"@helium/circuit-breaker-sdk": ^0.9.6
"@helium/crypto": ^4.10.2
"@helium/data-credits-sdk": ^0.9.6
"@helium/distributor-oracle": ^0.9.6
"@helium/fanout-sdk": ^0.9.6
"@helium/helium-entity-manager-sdk": ^0.9.6
"@helium/helium-sub-daos-sdk": ^0.9.6
"@helium/lazy-distributor-sdk": ^0.9.6
"@helium/mobile-entity-manager-sdk": ^0.9.6
"@helium/nft-proxy-sdk": ^0.0.12
"@helium/price-oracle-sdk": ^0.9.6
"@helium/spl-utils": ^0.9.6
"@helium/treasury-management-sdk": ^0.9.6
"@solana/spl-account-compression": ^0.1.7
"@solana/spl-governance": ^0.3.18
"@solana/spl-token": ^0.3.8
"@solana/web3.js": ^1.78.8
"@sqds/sdk": 2.0.4
"@types/yargs": ^17.0.24
axios: ^1.3.6
bn.js: ^5.2.0
bs58: ^4.0.1
git-format-staged: ^2.1.3
ts-loader: ^9.2.3
ts-node: ^10.9.1
typescript: ^5.2.2
yargs: ^17.7.1
bin:
helium-admin: ./bin/helium-admin.js
languageName: unknown
linkType: soft
"@helium/helium-entity-manager-sdk@^0.9.6, @helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk":
version: 0.0.0-use.local
resolution: "@helium/helium-entity-manager-sdk@workspace:packages/helium-entity-manager-sdk"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/address": ^4.10.2
"@helium/anchor-resolvers": ^0.9.6
"@helium/helium-sub-daos-sdk": ^0.9.6
"@helium/idls": ^0.9.6
"@helium/no-emit-sdk": ^0.9.6
"@helium/spl-utils": ^0.9.6
"@types/crypto-js": ^4.1.1
bn.js: ^5.2.0
bs58: ^4.0.1
crypto-js: ^4.1.1
git-format-staged: ^2.1.3
js-sha256: ^0.9.0
ts-loader: ^9.2.3
ts-node: ^10.9.1
typescript: ^5.2.2
languageName: unknown
linkType: soft
"@helium/helium-react-hooks@^0.9.6, @helium/helium-react-hooks@workspace:packages/helium-react-hooks":
version: 0.0.0-use.local
resolution: "@helium/helium-react-hooks@workspace:packages/helium-react-hooks"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/account-fetch-cache": ^0.9.6
"@helium/account-fetch-cache-hooks": ^0.9.6
"@solana/spl-token": ^0.3.8
"@solana/wallet-adapter-react": ^0.15.32
"@solana/web3.js": ^1.78.8
bs58: ^4.0.1
git-format-staged: ^2.1.3
pako: ^2.0.3
react-async-hook: ^4.0.0
ts-loader: ^9.2.3
typescript: ^5.2.2
peerDependencies:
"@solana/wallet-adapter-react": ^0.15.32
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
languageName: unknown
linkType: soft
"@helium/helium-react-hooks@npm:^0.5.0":
version: 0.5.0
resolution: "@helium/helium-react-hooks@npm:0.5.0"
dependencies:
"@coral-xyz/anchor": ^0.28.0
"@helium/account-fetch-cache": ^0.5.0
"@helium/account-fetch-cache-hooks": ^0.5.0
"@solana/spl-token": ^0.3.8
"@solana/web3.js": ^1.78.4
bs58: ^4.0.1
pako: ^2.0.3
react-async-hook: ^4.0.0
peerDependencies:
"@solana/wallet-adapter-react": ^0.15.32
react: ^16.8 || ^17 || ^18
react-dom: ^16.8 || ^17 || ^18
checksum: 4485fd1f46cdd501a990bc16436c89eb8f4a162d09cd580040bc1d34924ac0b15bf37c4b20a1a80995453573f1deac46b11ead6a5b373f3bc13a435d51c6165e
languageName: node