forked from blockfrost/blockfrost-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api_account.go
787 lines (667 loc) · 20.6 KB
/
api_account.go
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
package blockfrost
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
"sync"
)
const (
resourceAccount = "accounts"
resourceAccountHistory = "history"
resourceAccountRewardsHistory = "rewards"
resourceAccountDelegationHistory = "delegations"
resourceAccountRegistrationHistory = "registrations"
resourceAccountWithdrawalHistory = "withdrawals"
resourceAccountMIRHistory = "mirs"
resourceAccountAssociatedAddress = "addresses"
resourceAccountAddressWithAssetsAssociated = "addresses/assets"
)
// Account return Specific account address
// Obtain information about a specific stake account.
type Account struct {
// Bech32 stake address
StakeAddress string `json:"stake_address"`
// Registration state of an account
Active bool `json:"active"`
// Epoch of the most recent action - registration or deregistration
ActiveEpoch int64 `json:"active_epoch"`
// Balance of the account in Lovelaces
ControlledAmount string `json:"controlled_amount"`
// Sum of all rewards for the account in the Lovelaces
RewardsSum string `json:"rewards_sum"`
// Sum of all the withdrawals for the account in Lovelaces
WithdrawalsSum string `json:"withdrawals_sum"`
// Sum of all funds from reserves for the account in the Lovelaces
ReservesSum string `json:"reserves_sum"`
// Sum of all funds from treasury for the account in the Lovelaces
TreasurySum string `json:"treasury_sum"`
// Sum of available rewards that haven't been withdrawn yet for the account in the Lovelaces
WithdrawableAmount string `json:"withdrawable_amount"`
// Bech32 pool ID that owns the account
PoolID string `json:"pool_id"`
}
// AccountRewardsHist return Account reward history
// Obtain information about the reward history of a specific account.
type AccountRewardsHistory struct {
// Epoch of the associated reward
Epoch int32 `json:"epoch"`
// Rewards for given epoch in Lovelaces
Amount string `json:"amount"`
// Bech32 pool ID being delegated to
PoolID string `json:"pool_id"`
}
// AccountHistory return Account history
// Obtain information about the history of a specific account.
type AccountHistory struct {
// Epoch in which the stake was active
ActiveEpoch int32 `json:"active_epoch"`
// Stake amount in Lovelaces
Amount string `json:"amount"`
// Bech32 ID of pool being delegated to
PoolID string `json:"pool_id"`
}
// AccountDelegationHistory return Account delegation history
// Obtain information about the delegation of a specific account.
type AccountDelegationHistory struct {
// Epoch in which the delegation becomes active
ActiveEpoch int32 `json:"active_epoch"`
// Hash of the transaction containing the delegation
TXHash string `json:"tx_hash"`
// Rewards for given epoch in Lovelaces
Amount string `json:"amount"`
// Bech32 ID of pool being delegated to
PoolID string `json:"pool_id"`
}
// AccountRegistrationHistory return Account registration history
// Obtain information about the registrations and deregistrations of a specific account.
type AccountRegistrationHistory struct {
// Hash of the transaction containing the (de)registration certificate
TXHash string `json:"tx_hash"`
// Action in the certificate
// Enum: "registered" "deregistered"
Action string `json:"action"`
}
// AccountWithdrawalHistory return Account withdrawal history
// Obtain information about the withdrawals of a specific account.
type AccountWithdrawalHistory struct {
// Hash of the transaction containing the withdrawal
TXHash string `json:"tx_hash"`
// Withdrawal amount in Lovelaces
Amount string `json:"amount"`
}
// AccountMIRHistory return Account MIR history
// Obtain information about the MIRs of a specific account.
type AccountMIRHistory struct {
// Hash of the transaction containing the MIR
TXHash string `json:"tx_hash"`
// MIR amount in Lovelaces
Amount string `json:"amount"`
}
// AccountAssociatedAddress return Account associated addresses
// Obtain information about the addresses of a specific account.
type AccountAssociatedAddress struct {
// Address associated with the stake key
Address string `json:"address"`
}
// AccountAssociatedAsset return Assets associated with the account addresses
// Obtain information about assets associated with addresses of a specific account.
// Be careful, as an account could be part of a mangled address and does not necessarily mean the addresses are owned by user as the account.
type AccountAssociatedAsset struct {
// The unit of the value.
// Concatenation of asset policy_id and hex-encoded asset_name
Unit string `json:"unit"`
// The quantity of the unit
Quantity string `json:"quantity"`
}
type AccountHistoryResult struct {
Res []AccountHistory
Err error
}
type AccountRewardHisResult struct {
Res []AccountRewardsHistory
Err error
}
type AccDelegationHistoryResult struct {
Res []AccountDelegationHistory
Err error
}
type AccountRegistrationHistoryResult struct {
Res []AccountRegistrationHistory
Err error
}
type AccountMIRHistoryResult struct {
Res []AccountMIRHistory
Err error
}
type AccountWithdrawalHistoryResult struct {
Res []AccountWithdrawalHistory
Err error
}
type AccountAssociatedAddressesAll struct {
Res []AccountAssociatedAddress
Err error
}
type AccountAssociatedAssetsAll struct {
Res []AccountAssociatedAsset
Err error
}
// Account returns the content of a requested Account by the specific stake account.
func (c *apiClient) Account(ctx context.Context, stakeAddress string) (acc Account, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s", c.server, resourceAccount, stakeAddress))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
if err = json.NewDecoder(res.Body).Decode(&acc); err != nil {
return
}
return acc, nil
}
// AccountRewardsHistory returns the content of a requested Account by the specific stake account.
// Obtain information about the reward history.
func (c *apiClient) AccountRewardsHistory(ctx context.Context, stakeAddress string, query APIQueryParams) (ah []AccountRewardsHistory, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s/%s", c.server, resourceAccount, stakeAddress, resourceAccountRewardsHistory))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
v := req.URL.Query()
v = formatParams(v, query)
req.URL.RawQuery = v.Encode()
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
err = json.NewDecoder(res.Body).Decode(&ah)
if err != nil {
return
}
return ah, nil
}
func (c *apiClient) AccountRewardsHistoryAll(ctx context.Context, stakeAddress string) <-chan AccountRewardHisResult {
ch := make(chan AccountRewardHisResult, c.routines)
jobs := make(chan methodOptions, c.routines)
quit := make(chan bool, 1)
wg := sync.WaitGroup{}
for i := 0; i < c.routines; i++ {
wg.Add(1)
go func(jobs chan methodOptions, ch chan AccountRewardHisResult, wg *sync.WaitGroup) {
defer wg.Done()
for j := range jobs {
his, err := c.AccountRewardsHistory(j.ctx, stakeAddress, j.query)
if len(his) != j.query.Count || err != nil {
select {
case quit <- true:
default:
}
}
res := AccountRewardHisResult{Res: his, Err: err}
ch <- res
}
}(jobs, ch, &wg)
}
go func() {
defer close(ch)
fetchScripts := true
for i := 1; fetchScripts; i++ {
select {
case <-quit:
fetchScripts = false
default:
jobs <- methodOptions{ctx: ctx, query: APIQueryParams{Count: 100, Page: i}}
}
}
close(jobs)
wg.Wait()
}()
return ch
}
// AccountHistory returns the content of a requested Account by the specific stake account.
// Obtain information about the history.
func (c *apiClient) AccountHistory(ctx context.Context, stakeAddress string, query APIQueryParams) (ah []AccountHistory, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s/%s", c.server, resourceAccount, stakeAddress, resourceAccountHistory))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
v := req.URL.Query()
v = formatParams(v, query)
req.URL.RawQuery = v.Encode()
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
if err = json.NewDecoder(res.Body).Decode(&ah); err != nil {
return
}
return ah, nil
}
func (c *apiClient) AccountHistoryAll(ctx context.Context, address string) <-chan AccountHistoryResult {
ch := make(chan AccountHistoryResult, c.routines)
jobs := make(chan methodOptions, c.routines)
quit := make(chan bool, 1)
wg := sync.WaitGroup{}
for i := 0; i < c.routines; i++ {
wg.Add(1)
go func(jobs chan methodOptions, ch chan AccountHistoryResult, wg *sync.WaitGroup) {
defer wg.Done()
for j := range jobs {
his, err := c.AccountHistory(j.ctx, address, j.query)
if len(his) != j.query.Count || err != nil {
select {
case quit <- true:
default:
}
}
res := AccountHistoryResult{Res: his, Err: err}
ch <- res
}
}(jobs, ch, &wg)
}
go func() {
defer close(ch)
fetchScripts := true
for i := 1; fetchScripts; i++ {
select {
case <-quit:
fetchScripts = false
default:
jobs <- methodOptions{ctx: ctx, query: APIQueryParams{Count: 100, Page: i}}
}
}
close(jobs)
wg.Wait()
}()
return ch
}
// AccountDelegationHistory returns the content of a requested Account by the specific stake account.
// Obtain information about the delegations.
func (c *apiClient) AccountDelegationHistory(ctx context.Context, stakeAddress string, query APIQueryParams) (adh []AccountDelegationHistory, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s/%s", c.server, resourceAccount, stakeAddress, resourceAccountDelegationHistory))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
v := req.URL.Query()
v = formatParams(v, query)
req.URL.RawQuery = v.Encode()
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
if err = json.NewDecoder(res.Body).Decode(&adh); err != nil {
return
}
return adh, nil
}
func (c *apiClient) AccountDelegationHistoryAll(ctx context.Context, stakeAddress string) <-chan AccDelegationHistoryResult {
ch := make(chan AccDelegationHistoryResult, c.routines)
jobs := make(chan methodOptions, c.routines)
quit := make(chan bool, 1)
wg := sync.WaitGroup{}
for i := 0; i < c.routines; i++ {
wg.Add(1)
go func(jobs chan methodOptions, ch chan AccDelegationHistoryResult, wg *sync.WaitGroup) {
defer wg.Done()
for j := range jobs {
his, err := c.AccountDelegationHistory(j.ctx, stakeAddress, j.query)
if len(his) != j.query.Count || err != nil {
select {
case quit <- true:
default:
}
}
res := AccDelegationHistoryResult{Res: his, Err: err}
ch <- res
}
}(jobs, ch, &wg)
}
go func() {
defer close(ch)
fetchScripts := true
for i := 1; fetchScripts; i++ {
select {
case <-quit:
fetchScripts = false
default:
jobs <- methodOptions{ctx: ctx, query: APIQueryParams{Count: 100, Page: i}}
}
}
close(jobs)
wg.Wait()
}()
return ch
}
// AccountRegistrationHistory returns the content of a requested Account by the specific stake account.
// Obtain information about the Registrations.
func (c *apiClient) AccountRegistrationHistory(ctx context.Context, stakeAddress string, query APIQueryParams) (arh []AccountRegistrationHistory, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s/%s", c.server, resourceAccount, stakeAddress, resourceAccountRegistrationHistory))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
v := req.URL.Query()
v = formatParams(v, query)
req.URL.RawQuery = v.Encode()
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
if err = json.NewDecoder(res.Body).Decode(&arh); err != nil {
return
}
return arh, nil
}
func (c *apiClient) AccountRegistrationHistoryAll(ctx context.Context, stakeAddress string) <-chan AccountRegistrationHistoryResult {
ch := make(chan AccountRegistrationHistoryResult, c.routines)
jobs := make(chan methodOptions, c.routines)
quit := make(chan bool, 1)
wg := sync.WaitGroup{}
for i := 0; i < c.routines; i++ {
wg.Add(1)
go func(jobs chan methodOptions, ch chan AccountRegistrationHistoryResult, wg *sync.WaitGroup) {
defer wg.Done()
for j := range jobs {
his, err := c.AccountRegistrationHistory(j.ctx, stakeAddress, j.query)
if len(his) != j.query.Count || err != nil {
select {
case quit <- true:
default:
}
}
res := AccountRegistrationHistoryResult{Res: his, Err: err}
ch <- res
}
}(jobs, ch, &wg)
}
go func() {
defer close(ch)
fetchScripts := true
for i := 1; fetchScripts; i++ {
select {
case <-quit:
fetchScripts = false
default:
jobs <- methodOptions{ctx: ctx, query: APIQueryParams{Count: 100, Page: i}}
}
}
close(jobs)
wg.Wait()
}()
return ch
}
// AccountWithdrawalHistory returns the content of a requested Account by the specific stake account.
// Obtain information about the Withdrawals.
func (c *apiClient) AccountWithdrawalHistory(ctx context.Context, stakeAddress string, query APIQueryParams) (awh []AccountWithdrawalHistory, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s/%s", c.server, resourceAccount, stakeAddress, resourceAccountWithdrawalHistory))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
v := req.URL.Query()
v = formatParams(v, query)
req.URL.RawQuery = v.Encode()
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
if err = json.NewDecoder(res.Body).Decode(&awh); err != nil {
return
}
return awh, nil
}
func (c *apiClient) AccountWithdrawalHistoryAll(ctx context.Context, stakeAddress string) <-chan AccountWithdrawalHistoryResult {
ch := make(chan AccountWithdrawalHistoryResult, c.routines)
jobs := make(chan methodOptions, c.routines)
quit := make(chan bool, 1)
wg := sync.WaitGroup{}
for i := 0; i < c.routines; i++ {
wg.Add(1)
go func(jobs chan methodOptions, ch chan AccountWithdrawalHistoryResult, wg *sync.WaitGroup) {
defer wg.Done()
for j := range jobs {
his, err := c.AccountWithdrawalHistory(j.ctx, stakeAddress, j.query)
if len(his) != j.query.Count || err != nil {
select {
case quit <- true:
default:
}
}
res := AccountWithdrawalHistoryResult{Res: his, Err: err}
ch <- res
}
}(jobs, ch, &wg)
}
go func() {
defer close(ch)
fetchScripts := true
for i := 1; fetchScripts; i++ {
select {
case <-quit:
fetchScripts = false
default:
jobs <- methodOptions{ctx: ctx, query: APIQueryParams{Count: 100, Page: i}}
}
}
close(jobs)
wg.Wait()
}()
return ch
}
// AccountMIRHistory returns the content of a requested Account by the specific stake account.
// Obtain information about the MIRs.
func (c *apiClient) AccountMIRHistory(ctx context.Context, stakeAddress string, query APIQueryParams) (amh []AccountMIRHistory, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s/%s", c.server, resourceAccount, stakeAddress, resourceAccountMIRHistory))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
v := req.URL.Query()
v = formatParams(v, query)
req.URL.RawQuery = v.Encode()
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
if err = json.NewDecoder(res.Body).Decode(&amh); err != nil {
return
}
return amh, nil
}
func (c *apiClient) AccountMIRHistoryAll(ctx context.Context, stakeAddress string) <-chan AccountMIRHistoryResult {
ch := make(chan AccountMIRHistoryResult, c.routines)
jobs := make(chan methodOptions, c.routines)
quit := make(chan bool, 1)
wg := sync.WaitGroup{}
for i := 0; i < c.routines; i++ {
wg.Add(1)
go func(jobs chan methodOptions, ch chan AccountMIRHistoryResult, wg *sync.WaitGroup) {
defer wg.Done()
for j := range jobs {
his, err := c.AccountMIRHistory(j.ctx, stakeAddress, j.query)
if len(his) != j.query.Count || err != nil {
select {
case quit <- true:
default:
}
}
res := AccountMIRHistoryResult{Res: his, Err: err}
ch <- res
}
}(jobs, ch, &wg)
}
go func() {
defer close(ch)
fetchScripts := true
for i := 1; fetchScripts; i++ {
select {
case <-quit:
fetchScripts = false
default:
jobs <- methodOptions{ctx: ctx, query: APIQueryParams{Count: 100, Page: i}}
}
}
close(jobs)
wg.Wait()
}()
return ch
}
// AccountAssociatedAddresses returns the content of a requested Account by the specific stake account.
// Obtain information about the addresses of a specific account.
func (c *apiClient) AccountAssociatedAddresses(ctx context.Context, stakeAddress string, query APIQueryParams) (aas []AccountAssociatedAddress, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s/%s", c.server, resourceAccount, stakeAddress, resourceAccountAssociatedAddress))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
v := req.URL.Query()
v = formatParams(v, query)
req.URL.RawQuery = v.Encode()
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
if err = json.NewDecoder(res.Body).Decode(&aas); err != nil {
return
}
return aas, nil
}
func (c *apiClient) AccountAssociatedAddressesAll(ctx context.Context, stakeAddress string) <-chan AccountAssociatedAddressesAll {
ch := make(chan AccountAssociatedAddressesAll, c.routines)
jobs := make(chan methodOptions, c.routines)
quit := make(chan bool, 1)
wg := sync.WaitGroup{}
for i := 0; i < c.routines; i++ {
wg.Add(1)
go func(jobs chan methodOptions, ch chan AccountAssociatedAddressesAll, wg *sync.WaitGroup) {
defer wg.Done()
for j := range jobs {
addrs, err := c.AccountAssociatedAddresses(j.ctx, stakeAddress, j.query)
if len(addrs) != j.query.Count || err != nil {
select {
case quit <- true:
default:
}
}
res := AccountAssociatedAddressesAll{Res: addrs, Err: err}
ch <- res
}
}(jobs, ch, &wg)
}
go func() {
defer close(ch)
fetchScripts := true
for i := 1; fetchScripts; i++ {
select {
case <-quit:
fetchScripts = false
default:
jobs <- methodOptions{ctx: ctx, query: APIQueryParams{Count: 100, Page: i}}
}
}
close(jobs)
wg.Wait()
}()
return ch
}
// AccountAssociatedAssets returns the content of a requested Account by the specific stake account.
// Obtain information about the addresses of a specific account.
func (c *apiClient) AccountAssociatedAssets(ctx context.Context, stakeAddress string, query APIQueryParams) (aaa []AccountAssociatedAsset, err error) {
requestUrl, err := url.Parse(fmt.Sprintf("%s/%s/%s/%s", c.server, resourceAccount, stakeAddress, resourceAccountAddressWithAssetsAssociated))
if err != nil {
return
}
req, err := http.NewRequestWithContext(ctx, http.MethodGet, requestUrl.String(), nil)
if err != nil {
return
}
v := req.URL.Query()
v = formatParams(v, query)
req.URL.RawQuery = v.Encode()
res, err := c.handleRequest(req)
if err != nil {
return
}
defer res.Body.Close()
err = json.NewDecoder(res.Body).Decode(&aaa)
if err != nil {
return
}
return aaa, nil
}
func (c *apiClient) AccountAssociatedAssetsAll(ctx context.Context, stakeAddress string) <-chan AccountAssociatedAssetsAll {
ch := make(chan AccountAssociatedAssetsAll, c.routines)
jobs := make(chan methodOptions, c.routines)
quit := make(chan bool, 1)
wg := sync.WaitGroup{}
for i := 0; i < c.routines; i++ {
wg.Add(1)
go func(jobs chan methodOptions, ch chan AccountAssociatedAssetsAll, wg *sync.WaitGroup) {
defer wg.Done()
for j := range jobs {
as, err := c.AccountAssociatedAssets(j.ctx, stakeAddress, j.query)
if len(as) != j.query.Count || err != nil {
select {
case quit <- true:
default:
}
}
res := AccountAssociatedAssetsAll{Res: as, Err: err}
ch <- res
}
}(jobs, ch, &wg)
}
go func() {
defer close(ch)
fetchScripts := true
for i := 1; fetchScripts; i++ {
select {
case <-quit:
fetchScripts = false
default:
jobs <- methodOptions{ctx: ctx, query: APIQueryParams{Count: 100, Page: i}}
}
}
close(jobs)
wg.Wait()
}()
return ch
}