gateio-api 1.3.4 → 1.4.0

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 (65) hide show
  1. package/README.md +66 -8
  2. package/dist/cjs/RestClient.d.ts +448 -0
  3. package/dist/cjs/RestClient.js +540 -0
  4. package/dist/cjs/RestClient.js.map +1 -1
  5. package/dist/cjs/index.d.ts +6 -0
  6. package/dist/cjs/index.js +6 -0
  7. package/dist/cjs/index.js.map +1 -1
  8. package/dist/cjs/lib/BaseRestClient.js +9 -1
  9. package/dist/cjs/lib/BaseRestClient.js.map +1 -1
  10. package/dist/cjs/lib/BaseWSClient.js +2 -1
  11. package/dist/cjs/lib/BaseWSClient.js.map +1 -1
  12. package/dist/cjs/types/request/alpha.d.ts +47 -0
  13. package/dist/cjs/types/request/alpha.js +7 -0
  14. package/dist/cjs/types/request/alpha.js.map +1 -0
  15. package/dist/cjs/types/request/crossex.d.ts +146 -0
  16. package/dist/cjs/types/request/crossex.js +7 -0
  17. package/dist/cjs/types/request/crossex.js.map +1 -0
  18. package/dist/cjs/types/request/otc.d.ts +60 -0
  19. package/dist/cjs/types/request/otc.js +7 -0
  20. package/dist/cjs/types/request/otc.js.map +1 -0
  21. package/dist/cjs/types/response/alpha.d.ts +71 -0
  22. package/dist/cjs/types/response/alpha.js +7 -0
  23. package/dist/cjs/types/response/alpha.js.map +1 -0
  24. package/dist/cjs/types/response/crossex.d.ts +325 -0
  25. package/dist/cjs/types/response/crossex.js +7 -0
  26. package/dist/cjs/types/response/crossex.js.map +1 -0
  27. package/dist/cjs/types/response/otc.d.ts +144 -0
  28. package/dist/cjs/types/response/otc.js +7 -0
  29. package/dist/cjs/types/response/otc.js.map +1 -0
  30. package/dist/cjs/types/websockets/client.d.ts +6 -0
  31. package/dist/cjs/types/websockets/client.js +0 -3
  32. package/dist/cjs/types/websockets/client.js.map +1 -1
  33. package/dist/mjs/RestClient.d.ts +448 -0
  34. package/dist/mjs/RestClient.js +540 -0
  35. package/dist/mjs/RestClient.js.map +1 -1
  36. package/dist/mjs/index.d.ts +6 -0
  37. package/dist/mjs/index.js +6 -0
  38. package/dist/mjs/index.js.map +1 -1
  39. package/dist/mjs/lib/BaseRestClient.js +9 -1
  40. package/dist/mjs/lib/BaseRestClient.js.map +1 -1
  41. package/dist/mjs/lib/BaseWSClient.js +2 -1
  42. package/dist/mjs/lib/BaseWSClient.js.map +1 -1
  43. package/dist/mjs/types/request/alpha.d.ts +47 -0
  44. package/dist/mjs/types/request/alpha.js +6 -0
  45. package/dist/mjs/types/request/alpha.js.map +1 -0
  46. package/dist/mjs/types/request/crossex.d.ts +146 -0
  47. package/dist/mjs/types/request/crossex.js +6 -0
  48. package/dist/mjs/types/request/crossex.js.map +1 -0
  49. package/dist/mjs/types/request/otc.d.ts +60 -0
  50. package/dist/mjs/types/request/otc.js +6 -0
  51. package/dist/mjs/types/request/otc.js.map +1 -0
  52. package/dist/mjs/types/response/alpha.d.ts +71 -0
  53. package/dist/mjs/types/response/alpha.js +6 -0
  54. package/dist/mjs/types/response/alpha.js.map +1 -0
  55. package/dist/mjs/types/response/crossex.d.ts +325 -0
  56. package/dist/mjs/types/response/crossex.js +6 -0
  57. package/dist/mjs/types/response/crossex.js.map +1 -0
  58. package/dist/mjs/types/response/otc.d.ts +144 -0
  59. package/dist/mjs/types/response/otc.js +6 -0
  60. package/dist/mjs/types/response/otc.js.map +1 -0
  61. package/dist/mjs/types/websockets/client.d.ts +6 -0
  62. package/dist/mjs/types/websockets/client.js +0 -3
  63. package/dist/mjs/types/websockets/client.js.map +1 -1
  64. package/llms.txt +8131 -5712
  65. package/package.json +9 -2
@@ -3340,5 +3340,545 @@ export class RestClient extends BaseRestClient {
3340
3340
  getUserSubordinateRelationships(params) {
3341
3341
  return this.getPrivate('/rebate/user/sub_relation', params);
3342
3342
  }
3343
+ /**==========================================================================================================================
3344
+ * OTC
3345
+ * ==========================================================================================================================
3346
+ */
3347
+ /**
3348
+ * Fiat and stablecoin quote
3349
+ *
3350
+ * Create fiat and stablecoin quotes, supporting both PAY and GET directions
3351
+ *
3352
+ * @param params Quote parameters
3353
+ * @returns Promise with quote details including rate, amounts, and quote_token
3354
+ */
3355
+ createOTCQuote(params) {
3356
+ return this.postPrivate('/otc/quote', { body: params });
3357
+ }
3358
+ /**
3359
+ * Create fiat order
3360
+ *
3361
+ * Create a fiat order, supporting BUY for on-ramp and SELL for off-ramp
3362
+ *
3363
+ * @param params Fiat order parameters
3364
+ * @returns Promise with order creation confirmation
3365
+ */
3366
+ createOTCFiatOrder(params) {
3367
+ return this.postPrivate('/otc/order/create', { body: params });
3368
+ }
3369
+ /**
3370
+ * Create stablecoin order
3371
+ *
3372
+ * Create stablecoin order
3373
+ *
3374
+ * @param params Stablecoin order parameters
3375
+ * @returns Promise with order creation confirmation
3376
+ */
3377
+ createOTCStablecoinOrder(params) {
3378
+ return this.postPrivate('/otc/stable_coin/order/create', { body: params });
3379
+ }
3380
+ /**
3381
+ * Get user's default bank account information
3382
+ *
3383
+ * Get user's default bank account information for order placement
3384
+ *
3385
+ * @returns Promise with default bank account details
3386
+ */
3387
+ getOTCUserDefaultBank() {
3388
+ return this.getPrivate('/otc/get_user_def_bank');
3389
+ }
3390
+ /**
3391
+ * Mark fiat order as paid
3392
+ *
3393
+ * Mark fiat order as paid
3394
+ *
3395
+ * @param params Parameters with order_id
3396
+ * @returns Promise with confirmation
3397
+ */
3398
+ markOTCOrderAsPaid(params) {
3399
+ return this.postPrivate('/otc/order/paid', { body: params });
3400
+ }
3401
+ /**
3402
+ * Fiat order cancellation
3403
+ *
3404
+ * Cancel fiat order
3405
+ *
3406
+ * @param params Parameters with order_id
3407
+ * @returns Promise with cancellation confirmation
3408
+ */
3409
+ cancelOTCOrder(params) {
3410
+ return this.postPrivate('/otc/order/cancel', { query: params });
3411
+ }
3412
+ /**
3413
+ * Fiat order list
3414
+ *
3415
+ * Query the fiat order list with filters such as type, currency, time range, and status
3416
+ *
3417
+ * @param params Filter parameters for fiat order list
3418
+ * @returns Promise with paginated fiat order list
3419
+ */
3420
+ getOTCFiatOrderList(params) {
3421
+ return this.getPrivate('/otc/order/list', params);
3422
+ }
3423
+ /**
3424
+ * Stablecoin order list
3425
+ *
3426
+ * Query stablecoin order list with filtering by currency, time range, status, etc.
3427
+ *
3428
+ * @param params Filter parameters for stablecoin order list
3429
+ * @returns Promise with paginated stablecoin order list
3430
+ */
3431
+ getOTCStablecoinOrderList(params) {
3432
+ return this.getPrivate('/otc/stable_coin/order/list', params);
3433
+ }
3434
+ /**
3435
+ * Fiat order details
3436
+ *
3437
+ * Query fiat order details
3438
+ *
3439
+ * @param params Parameters with order_id
3440
+ * @returns Promise with fiat order details
3441
+ */
3442
+ getOTCFiatOrderDetail(params) {
3443
+ return this.getPrivate('/otc/order/detail', params);
3444
+ }
3445
+ /**==========================================================================================================================
3446
+ * CROSSEX
3447
+ * ==========================================================================================================================
3448
+ */
3449
+ /**
3450
+ * Query Trading Pair Information
3451
+ *
3452
+ * Query trading pair information for cross-exchange trading
3453
+ *
3454
+ * @param params Optional parameters to filter symbols
3455
+ * @returns Promise with array of symbol information
3456
+ */
3457
+ getCrossExSymbols(params) {
3458
+ return this.get('/crossex/rule/symbols', params);
3459
+ }
3460
+ /**
3461
+ * Query Risk Limit Information
3462
+ *
3463
+ * Query risk limit information for futures/margin trading pairs
3464
+ *
3465
+ * @param params Parameters with required symbols
3466
+ * @returns Promise with array of risk limit information
3467
+ */
3468
+ getCrossExRiskLimits(params) {
3469
+ return this.get('/crossex/rule/risk_limits', params);
3470
+ }
3471
+ /**
3472
+ * Query Supported Transfer Currencies
3473
+ *
3474
+ * Query supported transfer currencies for cross-exchange
3475
+ *
3476
+ * @param params Optional currency filter
3477
+ * @returns Promise with array of transfer coin information
3478
+ */
3479
+ getCrossExTransferCoins(params) {
3480
+ return this.get('/crossex/transfers/coin', params);
3481
+ }
3482
+ /**
3483
+ * Fund Transfer
3484
+ *
3485
+ * Transfer funds between accounts. Rate limit: 10 requests per 10 seconds
3486
+ *
3487
+ * @param params Transfer parameters
3488
+ * @returns Promise with transfer confirmation
3489
+ */
3490
+ createCrossExTransfer(params) {
3491
+ return this.postPrivate('/crossex/transfers', { body: params });
3492
+ }
3493
+ /**
3494
+ * Query Fund Transfer History
3495
+ *
3496
+ * Query fund transfer history. Rate Limit: 200 requests per 10 seconds
3497
+ *
3498
+ * @param params Optional filter parameters
3499
+ * @returns Promise with array of transfer history records
3500
+ */
3501
+ getCrossExTransferHistory(params) {
3502
+ return this.getPrivate('/crossex/transfers', params);
3503
+ }
3504
+ /**
3505
+ * Create an order
3506
+ *
3507
+ * Create an order for cross-exchange trading. Rate Limit: 100 requests per 10 seconds
3508
+ *
3509
+ * @param params Order parameters
3510
+ * @returns Promise with order creation response
3511
+ */
3512
+ createCrossExOrder(params) {
3513
+ return this.postPrivate('/crossex/orders', { body: params });
3514
+ }
3515
+ /**
3516
+ * Cancel Order
3517
+ *
3518
+ * Cancel an order. Rate Limit: 100 requests per 10 seconds
3519
+ *
3520
+ * @param order_id Order ID or Text for Cancel Order
3521
+ * @returns Promise with cancellation confirmation
3522
+ */
3523
+ cancelCrossExOrder(order_id) {
3524
+ return this.deletePrivate(`/crossex/orders/${order_id}`);
3525
+ }
3526
+ /**
3527
+ * Modify Order
3528
+ *
3529
+ * Modify an existing order. Rate Limit: 100 requests per 10 seconds
3530
+ *
3531
+ * @param order_id Order ID or Text for Modify Order
3532
+ * @param params Modification parameters
3533
+ * @returns Promise with modification confirmation
3534
+ */
3535
+ modifyCrossExOrder(order_id, params) {
3536
+ return this.putPrivate(`/crossex/orders/${order_id}`, { body: params });
3537
+ }
3538
+ /**
3539
+ * Query order details
3540
+ *
3541
+ * Query order details by order ID or custom text. Rate Limit: 200 requests per 10 seconds
3542
+ *
3543
+ * @param order_id Order ID or custom text
3544
+ * @returns Promise with order details
3545
+ */
3546
+ getCrossExOrder(order_id) {
3547
+ return this.getPrivate(`/crossex/orders/${order_id}`);
3548
+ }
3549
+ /**
3550
+ * Flash Swap Inquiry
3551
+ *
3552
+ * Create a flash swap quote. Rate Limit: 100 requests per day
3553
+ *
3554
+ * @param params Quote parameters
3555
+ * @returns Promise with quote details
3556
+ */
3557
+ createCrossExConvertQuote(params) {
3558
+ return this.postPrivate('/crossex/convert/quote', { body: params });
3559
+ }
3560
+ /**
3561
+ * Flash Swap Transaction
3562
+ *
3563
+ * Execute a flash swap transaction. Rate limit: 10 requests per 10 seconds
3564
+ *
3565
+ * @param params Parameters with quote_id
3566
+ * @returns Promise with transaction confirmation
3567
+ */
3568
+ createCrossExConvertOrder(params) {
3569
+ return this.postPrivate('/crossex/convert/orders', { body: params });
3570
+ }
3571
+ /**
3572
+ * Modify Account Contract Position Mode and Account Mode
3573
+ *
3574
+ * Modify account settings. Rate Limit: 100 requests per 60 seconds
3575
+ *
3576
+ * @param params Account modification parameters
3577
+ * @returns Promise with update confirmation
3578
+ */
3579
+ updateCrossExAccount(params) {
3580
+ return this.putPrivate('/crossex/accounts', { body: params });
3581
+ }
3582
+ /**
3583
+ * Query Account Assets
3584
+ *
3585
+ * Query account assets and balances. Rate Limit: 200 requests per 10 seconds
3586
+ *
3587
+ * @param params Optional exchange_type filter
3588
+ * @returns Promise with account information
3589
+ */
3590
+ getCrossExAccounts(params) {
3591
+ return this.getPrivate('/crossex/accounts', params);
3592
+ }
3593
+ /**
3594
+ * Modify Contract Trading Pair Leverage Multiplier
3595
+ *
3596
+ * Modify leverage for contract trading pair. Rate Limit: 100 requests per 10 seconds
3597
+ *
3598
+ * @param params Leverage modification parameters
3599
+ * @returns Promise with leverage update confirmation
3600
+ */
3601
+ setCrossExPositionLeverage(params) {
3602
+ return this.postPrivate('/crossex/positions/leverage', { body: params });
3603
+ }
3604
+ /**
3605
+ * Query Contract Trading Pair Leverage Multiplier
3606
+ *
3607
+ * Query leverage for contract trading pairs. Rate Limit: 200 requests per 10 seconds
3608
+ *
3609
+ * @param params Optional symbols filter
3610
+ * @returns Promise with array of leverage information
3611
+ */
3612
+ getCrossExPositionLeverage(params) {
3613
+ return this.getPrivate('/crossex/positions/leverage', params);
3614
+ }
3615
+ /**
3616
+ * Modify Leveraged Trading Pair Leverage Multiplier
3617
+ *
3618
+ * Modify leverage for margin trading pair. Rate Limit: 100 requests per 10 seconds
3619
+ *
3620
+ * @param params Leverage modification parameters
3621
+ * @returns Promise with leverage update confirmation
3622
+ */
3623
+ setCrossExMarginPositionLeverage(params) {
3624
+ return this.postPrivate('/crossex/margin_positions/leverage', {
3625
+ body: params,
3626
+ });
3627
+ }
3628
+ /**
3629
+ * Query Leveraged Trading Pair Leverage Multiplier
3630
+ *
3631
+ * Query leverage for margin trading pairs. Rate Limit: 200 requests per 10 seconds
3632
+ *
3633
+ * @param params Optional symbols filter
3634
+ * @returns Promise with array of leverage information
3635
+ */
3636
+ getCrossExMarginPositionLeverage(params) {
3637
+ return this.getPrivate('/crossex/margin_positions/leverage', params);
3638
+ }
3639
+ /**
3640
+ * Full Close Position
3641
+ *
3642
+ * Fully close a position. Rate Limit: 100 requests per day
3643
+ *
3644
+ * @param params Position close parameters
3645
+ * @returns Promise with close position confirmation
3646
+ */
3647
+ closeCrossExPosition(params) {
3648
+ return this.deletePrivate('/crossex/position', { body: params });
3649
+ }
3650
+ /**
3651
+ * Query margin asset interest rates
3652
+ *
3653
+ * Query interest rates for margin assets. Rate Limit: 200 requests per 10 seconds
3654
+ *
3655
+ * @param params Optional filter parameters
3656
+ * @returns Promise with array of interest rates
3657
+ */
3658
+ getCrossExInterestRate(params) {
3659
+ return this.getPrivate('/crossex/interest_rate', params);
3660
+ }
3661
+ /**
3662
+ * Query User Fee Rates
3663
+ *
3664
+ * Query user fee rates. Rate Limit: 200 requests per 10 seconds
3665
+ *
3666
+ * @returns Promise with fee rate information
3667
+ */
3668
+ getCrossExFeeRate() {
3669
+ return this.getPrivate('/crossex/fee');
3670
+ }
3671
+ /**
3672
+ * Query Contract Positions
3673
+ *
3674
+ * Query contract positions. Rate Limit: 200 requests per 10 seconds
3675
+ *
3676
+ * @param params Optional filter parameters
3677
+ * @returns Promise with array of positions
3678
+ */
3679
+ getCrossExPositions(params) {
3680
+ return this.getPrivate('/crossex/positions', params);
3681
+ }
3682
+ /**
3683
+ * Query Leveraged Positions
3684
+ *
3685
+ * Query margin/leveraged positions. Rate Limit: 200 requests per 10 seconds
3686
+ *
3687
+ * @param params Optional filter parameters
3688
+ * @returns Promise with array of margin positions
3689
+ */
3690
+ getCrossExMarginPositions(params) {
3691
+ return this.getPrivate('/crossex/margin_positions', params);
3692
+ }
3693
+ /**
3694
+ * Query ADL Position Reduction Ranking
3695
+ *
3696
+ * Query ADL position reduction ranking. Rate Limit: 200 requests per 10 seconds
3697
+ *
3698
+ * @param params Parameters with required symbol
3699
+ * @returns Promise with array of ADL rankings
3700
+ */
3701
+ getCrossExAdlRank(params) {
3702
+ return this.getPrivate('/crossex/adl_rank', params);
3703
+ }
3704
+ /**
3705
+ * Query All Current Open Orders
3706
+ *
3707
+ * Query all current open orders. Rate Limit: 200 requests per 10 seconds
3708
+ *
3709
+ * @param params Optional filter parameters
3710
+ * @returns Promise with array of open orders
3711
+ */
3712
+ getCrossExOpenOrders(params) {
3713
+ return this.getPrivate('/crossex/open_orders', params);
3714
+ }
3715
+ /**
3716
+ * Query order history
3717
+ *
3718
+ * Query historical orders. Rate Limit: 200 requests per 10 seconds
3719
+ *
3720
+ * @param params Optional filter parameters
3721
+ * @returns Promise with array of historical orders
3722
+ */
3723
+ getCrossExHistoryOrders(params) {
3724
+ return this.getPrivate('/crossex/history_orders', params);
3725
+ }
3726
+ /**
3727
+ * Query Contract Position History
3728
+ *
3729
+ * Query contract position history. Rate Limit: 200 requests per 10 seconds
3730
+ *
3731
+ * @param params Optional filter parameters
3732
+ * @returns Promise with array of historical positions
3733
+ */
3734
+ getCrossExHistoryPositions(params) {
3735
+ return this.getPrivate('/crossex/history_positions', params);
3736
+ }
3737
+ /**
3738
+ * Query Leveraged Position History
3739
+ *
3740
+ * Query margin position history. Rate Limit: 200 requests per 10 seconds
3741
+ *
3742
+ * @param params Optional filter parameters
3743
+ * @returns Promise with array of historical margin positions
3744
+ */
3745
+ getCrossExHistoryMarginPositions(params) {
3746
+ return this.getPrivate('/crossex/history_margin_positions', params);
3747
+ }
3748
+ /**
3749
+ * Query Leveraged Interest Deduction History
3750
+ *
3751
+ * Query margin interest deduction history. Rate Limit: 200 requests per 10 seconds
3752
+ *
3753
+ * @param params Optional filter parameters
3754
+ * @returns Promise with array of interest deduction records
3755
+ */
3756
+ getCrossExHistoryMarginInterests(params) {
3757
+ return this.getPrivate('/crossex/history_margin_interests', params);
3758
+ }
3759
+ /**
3760
+ * Query filled history
3761
+ *
3762
+ * Query trade execution history. Rate Limit: 200 requests per 10 seconds
3763
+ *
3764
+ * @param params Optional filter parameters
3765
+ * @returns Promise with array of trade records
3766
+ */
3767
+ getCrossExHistoryTrades(params) {
3768
+ return this.getPrivate('/crossex/history_trades', params);
3769
+ }
3770
+ /**
3771
+ * Query Account Asset Change History
3772
+ *
3773
+ * Query account balance change history. Rate Limit: 200 requests per 10 seconds
3774
+ *
3775
+ * @param params Optional filter parameters
3776
+ * @returns Promise with array of account book records
3777
+ */
3778
+ getCrossExAccountBook(params) {
3779
+ return this.getPrivate('/crossex/account_book', params);
3780
+ }
3781
+ /**
3782
+ * Query currency discount rate
3783
+ *
3784
+ * Query currency discount rate (for margin currency in isolated exchange mode). Rate Limit: 200 requests per 10 seconds
3785
+ *
3786
+ * @param params Optional filter parameters
3787
+ * @returns Promise with array of coin discount rates
3788
+ */
3789
+ getCrossExCoinDiscountRate(params) {
3790
+ return this.getPrivate('/crossex/coin_discount_rate', params);
3791
+ }
3792
+ /**==========================================================================================================================
3793
+ * ALPHA
3794
+ * ==========================================================================================================================
3795
+ */
3796
+ /**
3797
+ * Query position assets
3798
+ *
3799
+ * Query alpha account position assets
3800
+ *
3801
+ * @returns Promise with array of account balances
3802
+ */
3803
+ getAlphaAccounts() {
3804
+ return this.getPrivate('/alpha/accounts');
3805
+ }
3806
+ /**
3807
+ * Query asset transactions
3808
+ *
3809
+ * Query alpha account transaction history
3810
+ *
3811
+ * @param params Parameters with required from timestamp
3812
+ * @returns Promise with array of transaction records
3813
+ */
3814
+ getAlphaAccountBook(params) {
3815
+ return this.getPrivate('/alpha/account_book', params);
3816
+ }
3817
+ /**
3818
+ * Alpha Quote API
3819
+ *
3820
+ * Get a quote for alpha trading. Quote is valid for 1 minute. Rate-limited at 10 requests per second per user.
3821
+ *
3822
+ * @param params Quote parameters
3823
+ * @returns Promise with quote details
3824
+ */
3825
+ createAlphaQuote(params) {
3826
+ return this.postPrivate('/alpha/quote', { body: params });
3827
+ }
3828
+ /**
3829
+ * Alpha Order API
3830
+ *
3831
+ * Create an alpha order. Rate-limited at 5 requests per second per user.
3832
+ *
3833
+ * @param params Order parameters including quote_id
3834
+ * @returns Promise with order details
3835
+ */
3836
+ createAlphaOrder(params) {
3837
+ return this.postPrivate('/alpha/orders', { body: params });
3838
+ }
3839
+ /**
3840
+ * Alpha Order List API
3841
+ *
3842
+ * Query alpha order list with filters
3843
+ *
3844
+ * @param params Filter parameters
3845
+ * @returns Promise with array of orders
3846
+ */
3847
+ getAlphaOrders(params) {
3848
+ return this.getPrivate('/alpha/orders', params);
3849
+ }
3850
+ /**
3851
+ * Alpha Single Order Query API
3852
+ *
3853
+ * Query a single alpha order by order ID
3854
+ *
3855
+ * @param params Parameters with order_id
3856
+ * @returns Promise with order details
3857
+ */
3858
+ getAlphaOrder(params) {
3859
+ return this.getPrivate('/alpha/order', params);
3860
+ }
3861
+ /**
3862
+ * Query currency information
3863
+ *
3864
+ * Query alpha currency information. When currency is provided, returns specific currency info; otherwise returns paginated list.
3865
+ *
3866
+ * @param params Optional filter parameters
3867
+ * @returns Promise with array of currency information
3868
+ */
3869
+ getAlphaCurrencies(params) {
3870
+ return this.get('/alpha/currencies', params);
3871
+ }
3872
+ /**
3873
+ * Query currency ticker
3874
+ *
3875
+ * Query alpha currency ticker. When currency is provided, returns specific ticker; otherwise returns paginated list.
3876
+ *
3877
+ * @param params Optional filter parameters
3878
+ * @returns Promise with array of ticker information
3879
+ */
3880
+ getAlphaTickers(params) {
3881
+ return this.get('/alpha/tickers', params);
3882
+ }
3343
3883
  }
3344
3884
  //# sourceMappingURL=RestClient.js.map