@helium/idls 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/LICENSE +203 -0
  2. package/lib/cjs/CircuitBreaker.js +289 -0
  3. package/lib/cjs/CircuitBreaker.js.map +1 -0
  4. package/lib/cjs/circuit_breaker.js +469 -0
  5. package/lib/cjs/circuit_breaker.js.map +1 -0
  6. package/lib/cjs/data_credits.js +788 -0
  7. package/lib/cjs/data_credits.js.map +1 -0
  8. package/lib/cjs/helium_sub_daos.js +1100 -0
  9. package/lib/cjs/helium_sub_daos.js.map +1 -0
  10. package/lib/cjs/hotspot_issuance.js +869 -0
  11. package/lib/cjs/hotspot_issuance.js.map +1 -0
  12. package/lib/cjs/lazy_distributor.js +517 -0
  13. package/lib/cjs/lazy_distributor.js.map +1 -0
  14. package/lib/cjs/test_tracker.js +140 -0
  15. package/lib/cjs/test_tracker.js.map +1 -0
  16. package/lib/cjs/treasury_management.js +429 -0
  17. package/lib/cjs/treasury_management.js.map +1 -0
  18. package/lib/esm/CircuitBreaker.js +286 -0
  19. package/lib/esm/CircuitBreaker.js.map +1 -0
  20. package/lib/esm/circuit_breaker.js +466 -0
  21. package/lib/esm/circuit_breaker.js.map +1 -0
  22. package/lib/esm/data_credits.js +785 -0
  23. package/lib/esm/data_credits.js.map +1 -0
  24. package/lib/esm/helium_sub_daos.js +1097 -0
  25. package/lib/esm/helium_sub_daos.js.map +1 -0
  26. package/lib/esm/hotspot_issuance.js +866 -0
  27. package/lib/esm/hotspot_issuance.js.map +1 -0
  28. package/lib/esm/lazy_distributor.js +514 -0
  29. package/lib/esm/lazy_distributor.js.map +1 -0
  30. package/lib/esm/test_tracker.js +137 -0
  31. package/lib/esm/test_tracker.js.map +1 -0
  32. package/lib/esm/treasury_management.js +426 -0
  33. package/lib/esm/treasury_management.js.map +1 -0
  34. package/lib/types/CircuitBreaker.d.ts +287 -0
  35. package/lib/types/CircuitBreaker.d.ts.map +1 -0
  36. package/lib/types/circuit_breaker.d.ts +467 -0
  37. package/lib/types/circuit_breaker.d.ts.map +1 -0
  38. package/lib/types/data_credits.d.ts +786 -0
  39. package/lib/types/data_credits.d.ts.map +1 -0
  40. package/lib/types/helium_sub_daos.d.ts +1098 -0
  41. package/lib/types/helium_sub_daos.d.ts.map +1 -0
  42. package/lib/types/hotspot_issuance.d.ts +867 -0
  43. package/lib/types/hotspot_issuance.d.ts.map +1 -0
  44. package/lib/types/lazy_distributor.d.ts +515 -0
  45. package/lib/types/lazy_distributor.d.ts.map +1 -0
  46. package/lib/types/test_tracker.d.ts +138 -0
  47. package/lib/types/test_tracker.d.ts.map +1 -0
  48. package/lib/types/treasury_management.d.ts +427 -0
  49. package/lib/types/treasury_management.d.ts.map +1 -0
  50. package/package.json +44 -0
@@ -0,0 +1,866 @@
1
+ export const IDL = {
2
+ "version": "0.0.1",
3
+ "name": "hotspot_issuance",
4
+ "instructions": [
5
+ {
6
+ "name": "initializeHotspotConfigV0",
7
+ "accounts": [
8
+ {
9
+ "name": "payer",
10
+ "isMut": true,
11
+ "isSigner": true
12
+ },
13
+ {
14
+ "name": "collection",
15
+ "isMut": true,
16
+ "isSigner": false,
17
+ "pda": {
18
+ "seeds": [
19
+ {
20
+ "kind": "const",
21
+ "type": "string",
22
+ "value": "collection"
23
+ },
24
+ {
25
+ "kind": "arg",
26
+ "type": {
27
+ "defined": "InitializeHotspotConfigArgsV0"
28
+ },
29
+ "path": "args.symbol"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "name": "metadata",
36
+ "isMut": true,
37
+ "isSigner": false,
38
+ "pda": {
39
+ "seeds": [
40
+ {
41
+ "kind": "const",
42
+ "type": "string",
43
+ "value": "metadata"
44
+ },
45
+ {
46
+ "kind": "account",
47
+ "type": "publicKey",
48
+ "path": "token_metadata_program"
49
+ },
50
+ {
51
+ "kind": "account",
52
+ "type": "publicKey",
53
+ "account": "Mint",
54
+ "path": "collection"
55
+ }
56
+ ],
57
+ "programId": {
58
+ "kind": "account",
59
+ "type": "publicKey",
60
+ "path": "token_metadata_program"
61
+ }
62
+ }
63
+ },
64
+ {
65
+ "name": "masterEdition",
66
+ "isMut": true,
67
+ "isSigner": false,
68
+ "pda": {
69
+ "seeds": [
70
+ {
71
+ "kind": "const",
72
+ "type": "string",
73
+ "value": "metadata"
74
+ },
75
+ {
76
+ "kind": "account",
77
+ "type": "publicKey",
78
+ "path": "token_metadata_program"
79
+ },
80
+ {
81
+ "kind": "account",
82
+ "type": "publicKey",
83
+ "account": "Mint",
84
+ "path": "collection"
85
+ },
86
+ {
87
+ "kind": "const",
88
+ "type": "string",
89
+ "value": "edition"
90
+ }
91
+ ],
92
+ "programId": {
93
+ "kind": "account",
94
+ "type": "publicKey",
95
+ "path": "token_metadata_program"
96
+ }
97
+ }
98
+ },
99
+ {
100
+ "name": "tokenAccount",
101
+ "isMut": true,
102
+ "isSigner": false
103
+ },
104
+ {
105
+ "name": "hotspotConfig",
106
+ "isMut": true,
107
+ "isSigner": false,
108
+ "pda": {
109
+ "seeds": [
110
+ {
111
+ "kind": "const",
112
+ "type": "string",
113
+ "value": "hotspot_config"
114
+ },
115
+ {
116
+ "kind": "account",
117
+ "type": "publicKey",
118
+ "account": "Mint",
119
+ "path": "collection"
120
+ }
121
+ ]
122
+ }
123
+ },
124
+ {
125
+ "name": "dcMint",
126
+ "isMut": false,
127
+ "isSigner": false
128
+ },
129
+ {
130
+ "name": "tokenMetadataProgram",
131
+ "isMut": false,
132
+ "isSigner": false
133
+ },
134
+ {
135
+ "name": "associatedTokenProgram",
136
+ "isMut": false,
137
+ "isSigner": false
138
+ },
139
+ {
140
+ "name": "systemProgram",
141
+ "isMut": false,
142
+ "isSigner": false
143
+ },
144
+ {
145
+ "name": "tokenProgram",
146
+ "isMut": false,
147
+ "isSigner": false
148
+ },
149
+ {
150
+ "name": "rent",
151
+ "isMut": false,
152
+ "isSigner": false
153
+ }
154
+ ],
155
+ "args": [
156
+ {
157
+ "name": "args",
158
+ "type": {
159
+ "defined": "InitializeHotspotConfigArgsV0"
160
+ }
161
+ }
162
+ ]
163
+ },
164
+ {
165
+ "name": "initializeHotspotIssuerV0",
166
+ "accounts": [
167
+ {
168
+ "name": "payer",
169
+ "isMut": true,
170
+ "isSigner": true
171
+ },
172
+ {
173
+ "name": "hotspotConfig",
174
+ "isMut": false,
175
+ "isSigner": false,
176
+ "pda": {
177
+ "seeds": [
178
+ {
179
+ "kind": "const",
180
+ "type": "string",
181
+ "value": "hotspot_config"
182
+ },
183
+ {
184
+ "kind": "account",
185
+ "type": "publicKey",
186
+ "account": "HotspotConfigV0",
187
+ "path": "hotspot_config.collection"
188
+ }
189
+ ]
190
+ }
191
+ },
192
+ {
193
+ "name": "hotspotIssuer",
194
+ "isMut": true,
195
+ "isSigner": false,
196
+ "pda": {
197
+ "seeds": [
198
+ {
199
+ "kind": "const",
200
+ "type": "string",
201
+ "value": "hotspot_issuer"
202
+ },
203
+ {
204
+ "kind": "account",
205
+ "type": "publicKey",
206
+ "account": "HotspotConfigV0",
207
+ "path": "hotspot_config"
208
+ },
209
+ {
210
+ "kind": "arg",
211
+ "type": {
212
+ "defined": "InitializeHotspotIssuerArgsV0"
213
+ },
214
+ "path": "args.maker"
215
+ }
216
+ ]
217
+ }
218
+ },
219
+ {
220
+ "name": "systemProgram",
221
+ "isMut": false,
222
+ "isSigner": false
223
+ },
224
+ {
225
+ "name": "rent",
226
+ "isMut": false,
227
+ "isSigner": false
228
+ }
229
+ ],
230
+ "args": [
231
+ {
232
+ "name": "args",
233
+ "type": {
234
+ "defined": "InitializeHotspotIssuerArgsV0"
235
+ }
236
+ }
237
+ ]
238
+ },
239
+ {
240
+ "name": "issueHotspotV0",
241
+ "accounts": [
242
+ {
243
+ "name": "payer",
244
+ "isMut": true,
245
+ "isSigner": true
246
+ },
247
+ {
248
+ "name": "dcFeePayer",
249
+ "isMut": false,
250
+ "isSigner": true
251
+ },
252
+ {
253
+ "name": "maker",
254
+ "isMut": false,
255
+ "isSigner": true
256
+ },
257
+ {
258
+ "name": "hotspotOwner",
259
+ "isMut": false,
260
+ "isSigner": false
261
+ },
262
+ {
263
+ "name": "collection",
264
+ "isMut": false,
265
+ "isSigner": false
266
+ },
267
+ {
268
+ "name": "collectionMetadata",
269
+ "isMut": true,
270
+ "isSigner": false,
271
+ "pda": {
272
+ "seeds": [
273
+ {
274
+ "kind": "const",
275
+ "type": "string",
276
+ "value": "metadata"
277
+ },
278
+ {
279
+ "kind": "account",
280
+ "type": "publicKey",
281
+ "path": "token_metadata_program"
282
+ },
283
+ {
284
+ "kind": "account",
285
+ "type": "publicKey",
286
+ "account": "Mint",
287
+ "path": "collection"
288
+ }
289
+ ],
290
+ "programId": {
291
+ "kind": "account",
292
+ "type": "publicKey",
293
+ "path": "token_metadata_program"
294
+ }
295
+ }
296
+ },
297
+ {
298
+ "name": "collectionMasterEdition",
299
+ "isMut": true,
300
+ "isSigner": false,
301
+ "pda": {
302
+ "seeds": [
303
+ {
304
+ "kind": "const",
305
+ "type": "string",
306
+ "value": "metadata"
307
+ },
308
+ {
309
+ "kind": "account",
310
+ "type": "publicKey",
311
+ "path": "token_metadata_program"
312
+ },
313
+ {
314
+ "kind": "account",
315
+ "type": "publicKey",
316
+ "account": "Mint",
317
+ "path": "collection"
318
+ },
319
+ {
320
+ "kind": "const",
321
+ "type": "string",
322
+ "value": "edition"
323
+ }
324
+ ],
325
+ "programId": {
326
+ "kind": "account",
327
+ "type": "publicKey",
328
+ "path": "token_metadata_program"
329
+ }
330
+ }
331
+ },
332
+ {
333
+ "name": "hotspotConfig",
334
+ "isMut": false,
335
+ "isSigner": false,
336
+ "pda": {
337
+ "seeds": [
338
+ {
339
+ "kind": "const",
340
+ "type": "string",
341
+ "value": "hotspot_config"
342
+ },
343
+ {
344
+ "kind": "account",
345
+ "type": "publicKey",
346
+ "account": "Mint",
347
+ "path": "collection"
348
+ }
349
+ ]
350
+ },
351
+ "relations": [
352
+ "collection",
353
+ "dc_mint"
354
+ ]
355
+ },
356
+ {
357
+ "name": "hotspotIssuer",
358
+ "isMut": true,
359
+ "isSigner": false,
360
+ "pda": {
361
+ "seeds": [
362
+ {
363
+ "kind": "const",
364
+ "type": "string",
365
+ "value": "hotspot_issuer"
366
+ },
367
+ {
368
+ "kind": "account",
369
+ "type": "publicKey",
370
+ "account": "HotspotConfigV0",
371
+ "path": "hotspot_config"
372
+ },
373
+ {
374
+ "kind": "account",
375
+ "type": "publicKey",
376
+ "path": "maker"
377
+ }
378
+ ]
379
+ },
380
+ "relations": [
381
+ "hotspot_config",
382
+ "maker"
383
+ ]
384
+ },
385
+ {
386
+ "name": "hotspot",
387
+ "isMut": true,
388
+ "isSigner": false
389
+ },
390
+ {
391
+ "name": "storage",
392
+ "isMut": true,
393
+ "isSigner": false,
394
+ "pda": {
395
+ "seeds": [
396
+ {
397
+ "kind": "const",
398
+ "type": "string",
399
+ "value": "storage"
400
+ },
401
+ {
402
+ "kind": "account",
403
+ "type": "publicKey",
404
+ "account": "Mint",
405
+ "path": "hotspot"
406
+ }
407
+ ]
408
+ }
409
+ },
410
+ {
411
+ "name": "metadata",
412
+ "isMut": true,
413
+ "isSigner": false,
414
+ "pda": {
415
+ "seeds": [
416
+ {
417
+ "kind": "const",
418
+ "type": "string",
419
+ "value": "metadata"
420
+ },
421
+ {
422
+ "kind": "account",
423
+ "type": "publicKey",
424
+ "path": "token_metadata_program"
425
+ },
426
+ {
427
+ "kind": "account",
428
+ "type": "publicKey",
429
+ "account": "Mint",
430
+ "path": "hotspot"
431
+ }
432
+ ],
433
+ "programId": {
434
+ "kind": "account",
435
+ "type": "publicKey",
436
+ "path": "token_metadata_program"
437
+ }
438
+ }
439
+ },
440
+ {
441
+ "name": "masterEdition",
442
+ "isMut": true,
443
+ "isSigner": false,
444
+ "pda": {
445
+ "seeds": [
446
+ {
447
+ "kind": "const",
448
+ "type": "string",
449
+ "value": "metadata"
450
+ },
451
+ {
452
+ "kind": "account",
453
+ "type": "publicKey",
454
+ "path": "token_metadata_program"
455
+ },
456
+ {
457
+ "kind": "account",
458
+ "type": "publicKey",
459
+ "account": "Mint",
460
+ "path": "hotspot"
461
+ },
462
+ {
463
+ "kind": "const",
464
+ "type": "string",
465
+ "value": "edition"
466
+ }
467
+ ],
468
+ "programId": {
469
+ "kind": "account",
470
+ "type": "publicKey",
471
+ "path": "token_metadata_program"
472
+ }
473
+ }
474
+ },
475
+ {
476
+ "name": "recipientTokenAccount",
477
+ "isMut": true,
478
+ "isSigner": false
479
+ },
480
+ {
481
+ "name": "dc",
482
+ "isMut": false,
483
+ "isSigner": false,
484
+ "pda": {
485
+ "seeds": [
486
+ {
487
+ "kind": "const",
488
+ "type": "string",
489
+ "value": "dc"
490
+ },
491
+ {
492
+ "kind": "account",
493
+ "type": "publicKey",
494
+ "path": "dc_mint"
495
+ }
496
+ ],
497
+ "programId": {
498
+ "kind": "account",
499
+ "type": "publicKey",
500
+ "path": "data_credits_program"
501
+ }
502
+ },
503
+ "relations": [
504
+ "dc_mint"
505
+ ]
506
+ },
507
+ {
508
+ "name": "dcMint",
509
+ "isMut": true,
510
+ "isSigner": false
511
+ },
512
+ {
513
+ "name": "dcBurner",
514
+ "isMut": true,
515
+ "isSigner": false
516
+ },
517
+ {
518
+ "name": "subDaoEpochInfo",
519
+ "isMut": true,
520
+ "isSigner": false
521
+ },
522
+ {
523
+ "name": "subDao",
524
+ "isMut": true,
525
+ "isSigner": false
526
+ },
527
+ {
528
+ "name": "tokenMetadataProgram",
529
+ "isMut": false,
530
+ "isSigner": false
531
+ },
532
+ {
533
+ "name": "dataCreditsProgram",
534
+ "isMut": false,
535
+ "isSigner": false
536
+ },
537
+ {
538
+ "name": "heliumSubDaosProgram",
539
+ "isMut": false,
540
+ "isSigner": false
541
+ },
542
+ {
543
+ "name": "associatedTokenProgram",
544
+ "isMut": false,
545
+ "isSigner": false
546
+ },
547
+ {
548
+ "name": "systemProgram",
549
+ "isMut": false,
550
+ "isSigner": false
551
+ },
552
+ {
553
+ "name": "tokenProgram",
554
+ "isMut": false,
555
+ "isSigner": false
556
+ },
557
+ {
558
+ "name": "clock",
559
+ "isMut": false,
560
+ "isSigner": false
561
+ },
562
+ {
563
+ "name": "rent",
564
+ "isMut": false,
565
+ "isSigner": false
566
+ }
567
+ ],
568
+ "args": [
569
+ {
570
+ "name": "args",
571
+ "type": {
572
+ "defined": "IssueHotspotArgsV0"
573
+ }
574
+ }
575
+ ]
576
+ }
577
+ ],
578
+ "accounts": [
579
+ {
580
+ "name": "hotspotConfigV0",
581
+ "type": {
582
+ "kind": "struct",
583
+ "fields": [
584
+ {
585
+ "name": "dcFee",
586
+ "type": "u64"
587
+ },
588
+ {
589
+ "name": "collection",
590
+ "type": "publicKey"
591
+ },
592
+ {
593
+ "name": "dcMint",
594
+ "type": "publicKey"
595
+ },
596
+ {
597
+ "name": "onboardingServer",
598
+ "type": "publicKey"
599
+ },
600
+ {
601
+ "name": "authority",
602
+ "type": "publicKey"
603
+ },
604
+ {
605
+ "name": "bumpSeed",
606
+ "type": "u8"
607
+ },
608
+ {
609
+ "name": "collectionBumpSeed",
610
+ "type": "u8"
611
+ }
612
+ ]
613
+ }
614
+ },
615
+ {
616
+ "name": "hotspotIssuerV0",
617
+ "type": {
618
+ "kind": "struct",
619
+ "fields": [
620
+ {
621
+ "name": "count",
622
+ "type": "u64"
623
+ },
624
+ {
625
+ "name": "maker",
626
+ "type": "publicKey"
627
+ },
628
+ {
629
+ "name": "hotspotConfig",
630
+ "type": "publicKey"
631
+ },
632
+ {
633
+ "name": "authority",
634
+ "type": "publicKey"
635
+ },
636
+ {
637
+ "name": "bumpSeed",
638
+ "type": "u8"
639
+ }
640
+ ]
641
+ }
642
+ },
643
+ {
644
+ "name": "hotspotStorageV0",
645
+ "type": {
646
+ "kind": "struct",
647
+ "fields": [
648
+ {
649
+ "name": "eccCompact",
650
+ "type": "bytes"
651
+ },
652
+ {
653
+ "name": "location",
654
+ "type": {
655
+ "option": "string"
656
+ }
657
+ },
658
+ {
659
+ "name": "authority",
660
+ "type": "publicKey"
661
+ },
662
+ {
663
+ "name": "bumpSeed",
664
+ "type": "u8"
665
+ }
666
+ ]
667
+ }
668
+ }
669
+ ],
670
+ "types": [
671
+ {
672
+ "name": "InitializeHotspotConfigArgsV0",
673
+ "type": {
674
+ "kind": "struct",
675
+ "fields": [
676
+ {
677
+ "name": "name",
678
+ "type": "string"
679
+ },
680
+ {
681
+ "name": "symbol",
682
+ "type": "string"
683
+ },
684
+ {
685
+ "name": "metadataUrl",
686
+ "type": "string"
687
+ },
688
+ {
689
+ "name": "dcFee",
690
+ "type": "u64"
691
+ },
692
+ {
693
+ "name": "onboardingServer",
694
+ "type": "publicKey"
695
+ }
696
+ ]
697
+ }
698
+ },
699
+ {
700
+ "name": "InitializeHotspotIssuerArgsV0",
701
+ "type": {
702
+ "kind": "struct",
703
+ "fields": [
704
+ {
705
+ "name": "maker",
706
+ "type": "publicKey"
707
+ },
708
+ {
709
+ "name": "authority",
710
+ "type": "publicKey"
711
+ }
712
+ ]
713
+ }
714
+ },
715
+ {
716
+ "name": "IssueHotspotArgsV0",
717
+ "type": {
718
+ "kind": "struct",
719
+ "fields": [
720
+ {
721
+ "name": "eccCompact",
722
+ "type": "bytes"
723
+ },
724
+ {
725
+ "name": "uri",
726
+ "type": "string"
727
+ }
728
+ ]
729
+ }
730
+ },
731
+ {
732
+ "name": "Collection",
733
+ "type": {
734
+ "kind": "struct",
735
+ "fields": [
736
+ {
737
+ "name": "verified",
738
+ "type": "bool"
739
+ },
740
+ {
741
+ "name": "key",
742
+ "type": "publicKey"
743
+ }
744
+ ]
745
+ }
746
+ },
747
+ {
748
+ "name": "CreateMetadataAccountArgs",
749
+ "type": {
750
+ "kind": "struct",
751
+ "fields": [
752
+ {
753
+ "name": "name",
754
+ "docs": [
755
+ "The name of the asset"
756
+ ],
757
+ "type": "string"
758
+ },
759
+ {
760
+ "name": "symbol",
761
+ "docs": [
762
+ "The symbol for the asset"
763
+ ],
764
+ "type": "string"
765
+ },
766
+ {
767
+ "name": "uri",
768
+ "docs": [
769
+ "URI pointing to JSON representing the asset"
770
+ ],
771
+ "type": "string"
772
+ },
773
+ {
774
+ "name": "collection",
775
+ "type": {
776
+ "option": {
777
+ "defined": "Collection"
778
+ }
779
+ }
780
+ },
781
+ {
782
+ "name": "collectionDetails",
783
+ "type": {
784
+ "option": {
785
+ "defined": "CollectionDetails"
786
+ }
787
+ }
788
+ }
789
+ ]
790
+ }
791
+ },
792
+ {
793
+ "name": "CreateMasterEditionArgs",
794
+ "type": {
795
+ "kind": "struct",
796
+ "fields": [
797
+ {
798
+ "name": "maxSupply",
799
+ "type": {
800
+ "option": "u64"
801
+ }
802
+ }
803
+ ]
804
+ }
805
+ },
806
+ {
807
+ "name": "VerifySizedCollectionItemArgs",
808
+ "type": {
809
+ "kind": "struct",
810
+ "fields": [
811
+ {
812
+ "name": "collectionAuthorityRecord",
813
+ "type": {
814
+ "option": "publicKey"
815
+ }
816
+ }
817
+ ]
818
+ }
819
+ },
820
+ {
821
+ "name": "CollectionDetails",
822
+ "type": {
823
+ "kind": "enum",
824
+ "variants": [
825
+ {
826
+ "name": "V1",
827
+ "fields": [
828
+ {
829
+ "name": "size",
830
+ "type": "u64"
831
+ }
832
+ ]
833
+ }
834
+ ]
835
+ }
836
+ }
837
+ ],
838
+ "errors": [
839
+ {
840
+ "code": 6000,
841
+ "name": "InvalidEccCompact",
842
+ "msg": "Invalid ecc compcat"
843
+ },
844
+ {
845
+ "code": 6001,
846
+ "name": "InvalidStringLength",
847
+ "msg": "Invalid string length, your string was likely too long"
848
+ },
849
+ {
850
+ "code": 6002,
851
+ "name": "StringNotAlphanumeric",
852
+ "msg": "The string was not alphanumeric"
853
+ },
854
+ {
855
+ "code": 6003,
856
+ "name": "InvalidMetadataProgram",
857
+ "msg": "Metadata Program Mismatch"
858
+ },
859
+ {
860
+ "code": 6004,
861
+ "name": "InvalidDataIncrease",
862
+ "msg": "The realloc increase was too large"
863
+ }
864
+ ]
865
+ };
866
+ //# sourceMappingURL=hotspot_issuance.js.map