@n8n-dev/n8n-nodes-binance 1.0.0 → 1.0.2
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.
- package/dist/nodes/Binance/resources/auto-invest/index.js +425 -0
- package/dist/nodes/Binance/resources/auto-invest/index.js.map +1 -1
- package/dist/nodes/Binance/resources/blvt/index.js +150 -0
- package/dist/nodes/Binance/resources/blvt/index.js.map +1 -1
- package/dist/nodes/Binance/resources/c-2-c/index.js +25 -0
- package/dist/nodes/Binance/resources/c-2-c/index.js.map +1 -1
- package/dist/nodes/Binance/resources/convert/index.js +200 -0
- package/dist/nodes/Binance/resources/convert/index.js.map +1 -1
- package/dist/nodes/Binance/resources/copy-trading/index.js +50 -0
- package/dist/nodes/Binance/resources/copy-trading/index.js.map +1 -1
- package/dist/nodes/Binance/resources/crypto-loans/index.js +525 -0
- package/dist/nodes/Binance/resources/crypto-loans/index.js.map +1 -1
- package/dist/nodes/Binance/resources/dual-investment/index.js +125 -0
- package/dist/nodes/Binance/resources/dual-investment/index.js.map +1 -1
- package/dist/nodes/Binance/resources/fiat/index.js +50 -0
- package/dist/nodes/Binance/resources/fiat/index.js.map +1 -1
- package/dist/nodes/Binance/resources/futures/index.js +75 -0
- package/dist/nodes/Binance/resources/futures/index.js.map +1 -1
- package/dist/nodes/Binance/resources/futures-algo/index.js +150 -0
- package/dist/nodes/Binance/resources/futures-algo/index.js.map +1 -1
- package/dist/nodes/Binance/resources/gift-card/index.js +150 -0
- package/dist/nodes/Binance/resources/gift-card/index.js.map +1 -1
- package/dist/nodes/Binance/resources/isolated-margin-stream/index.js +75 -0
- package/dist/nodes/Binance/resources/isolated-margin-stream/index.js.map +1 -1
- package/dist/nodes/Binance/resources/margin/index.js +1204 -4
- package/dist/nodes/Binance/resources/margin/index.js.map +1 -1
- package/dist/nodes/Binance/resources/margin-stream/index.js +75 -0
- package/dist/nodes/Binance/resources/margin-stream/index.js.map +1 -1
- package/dist/nodes/Binance/resources/mining/index.js +325 -0
- package/dist/nodes/Binance/resources/mining/index.js.map +1 -1
- package/dist/nodes/Binance/resources/nft/index.js +100 -0
- package/dist/nodes/Binance/resources/nft/index.js.map +1 -1
- package/dist/nodes/Binance/resources/pay/index.js +25 -0
- package/dist/nodes/Binance/resources/pay/index.js.map +1 -1
- package/dist/nodes/Binance/resources/portfolio-margin/index.js +325 -0
- package/dist/nodes/Binance/resources/portfolio-margin/index.js.map +1 -1
- package/dist/nodes/Binance/resources/rebate/index.js +25 -0
- package/dist/nodes/Binance/resources/rebate/index.js.map +1 -1
- package/dist/nodes/Binance/resources/savings/index.js +100 -0
- package/dist/nodes/Binance/resources/savings/index.js.map +1 -1
- package/dist/nodes/Binance/resources/simple-earn/index.js +600 -0
- package/dist/nodes/Binance/resources/simple-earn/index.js.map +1 -1
- package/dist/nodes/Binance/resources/spot-algo/index.js +125 -0
- package/dist/nodes/Binance/resources/spot-algo/index.js.map +1 -1
- package/dist/nodes/Binance/resources/staking/index.js +300 -0
- package/dist/nodes/Binance/resources/staking/index.js.map +1 -1
- package/dist/nodes/Binance/resources/stream/index.js +75 -0
- package/dist/nodes/Binance/resources/stream/index.js.map +1 -1
- package/dist/nodes/Binance/resources/sub-account/index.js +1105 -5
- package/dist/nodes/Binance/resources/sub-account/index.js.map +1 -1
- package/dist/nodes/Binance/resources/trade/index.js +575 -0
- package/dist/nodes/Binance/resources/trade/index.js.map +1 -1
- package/dist/nodes/Binance/resources/vip-loans/index.js +250 -0
- package/dist/nodes/Binance/resources/vip-loans/index.js.map +1 -1
- package/dist/nodes/Binance/resources/wallet/index.js +829 -4
- package/dist/nodes/Binance/resources/wallet/index.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -392,6 +392,31 @@ exports.autoInvestDescription = [
|
|
|
392
392
|
}
|
|
393
393
|
}
|
|
394
394
|
},
|
|
395
|
+
{
|
|
396
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
397
|
+
"name": "security_apikeyauth",
|
|
398
|
+
"type": "string",
|
|
399
|
+
"default": "",
|
|
400
|
+
"description": "Binance Public API Key",
|
|
401
|
+
"required": false,
|
|
402
|
+
"routing": {
|
|
403
|
+
"request": {
|
|
404
|
+
"headers": {
|
|
405
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
"displayOptions": {
|
|
410
|
+
"show": {
|
|
411
|
+
"resource": [
|
|
412
|
+
"Auto Invest"
|
|
413
|
+
],
|
|
414
|
+
"operation": [
|
|
415
|
+
"GET Sapi V 1 Lending Auto Invest Target Asset List"
|
|
416
|
+
]
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
},
|
|
395
420
|
{
|
|
396
421
|
"displayName": "GET /sapi/v1/lending/auto-invest/target-asset/roi/list",
|
|
397
422
|
"name": "operation",
|
|
@@ -538,6 +563,31 @@ exports.autoInvestDescription = [
|
|
|
538
563
|
}
|
|
539
564
|
}
|
|
540
565
|
},
|
|
566
|
+
{
|
|
567
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
568
|
+
"name": "security_apikeyauth",
|
|
569
|
+
"type": "string",
|
|
570
|
+
"default": "",
|
|
571
|
+
"description": "Binance Public API Key",
|
|
572
|
+
"required": false,
|
|
573
|
+
"routing": {
|
|
574
|
+
"request": {
|
|
575
|
+
"headers": {
|
|
576
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"displayOptions": {
|
|
581
|
+
"show": {
|
|
582
|
+
"resource": [
|
|
583
|
+
"Auto Invest"
|
|
584
|
+
],
|
|
585
|
+
"operation": [
|
|
586
|
+
"GET Sapi V 1 Lending Auto Invest Target Asset Roi List"
|
|
587
|
+
]
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
},
|
|
541
591
|
{
|
|
542
592
|
"displayName": "GET /sapi/v1/lending/auto-invest/all/asset",
|
|
543
593
|
"name": "operation",
|
|
@@ -634,6 +684,31 @@ exports.autoInvestDescription = [
|
|
|
634
684
|
}
|
|
635
685
|
}
|
|
636
686
|
},
|
|
687
|
+
{
|
|
688
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
689
|
+
"name": "security_apikeyauth",
|
|
690
|
+
"type": "string",
|
|
691
|
+
"default": "",
|
|
692
|
+
"description": "Binance Public API Key",
|
|
693
|
+
"required": false,
|
|
694
|
+
"routing": {
|
|
695
|
+
"request": {
|
|
696
|
+
"headers": {
|
|
697
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
"displayOptions": {
|
|
702
|
+
"show": {
|
|
703
|
+
"resource": [
|
|
704
|
+
"Auto Invest"
|
|
705
|
+
],
|
|
706
|
+
"operation": [
|
|
707
|
+
"GET Sapi V 1 Lending Auto Invest All Asset"
|
|
708
|
+
]
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
},
|
|
637
712
|
{
|
|
638
713
|
"displayName": "GET /sapi/v1/lending/auto-invest/source-asset/list",
|
|
639
714
|
"name": "operation",
|
|
@@ -827,6 +902,31 @@ exports.autoInvestDescription = [
|
|
|
827
902
|
}
|
|
828
903
|
}
|
|
829
904
|
},
|
|
905
|
+
{
|
|
906
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
907
|
+
"name": "security_apikeyauth",
|
|
908
|
+
"type": "string",
|
|
909
|
+
"default": "",
|
|
910
|
+
"description": "Binance Public API Key",
|
|
911
|
+
"required": false,
|
|
912
|
+
"routing": {
|
|
913
|
+
"request": {
|
|
914
|
+
"headers": {
|
|
915
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
},
|
|
919
|
+
"displayOptions": {
|
|
920
|
+
"show": {
|
|
921
|
+
"resource": [
|
|
922
|
+
"Auto Invest"
|
|
923
|
+
],
|
|
924
|
+
"operation": [
|
|
925
|
+
"GET Sapi V 1 Lending Auto Invest Source Asset List"
|
|
926
|
+
]
|
|
927
|
+
}
|
|
928
|
+
}
|
|
929
|
+
},
|
|
830
930
|
{
|
|
831
931
|
"displayName": "POST /sapi/v1/lending/auto-invest/plan/add",
|
|
832
932
|
"name": "operation",
|
|
@@ -1306,6 +1406,31 @@ exports.autoInvestDescription = [
|
|
|
1306
1406
|
}
|
|
1307
1407
|
}
|
|
1308
1408
|
},
|
|
1409
|
+
{
|
|
1410
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
1411
|
+
"name": "security_apikeyauth",
|
|
1412
|
+
"type": "string",
|
|
1413
|
+
"default": "",
|
|
1414
|
+
"description": "Binance Public API Key",
|
|
1415
|
+
"required": false,
|
|
1416
|
+
"routing": {
|
|
1417
|
+
"request": {
|
|
1418
|
+
"headers": {
|
|
1419
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
1420
|
+
}
|
|
1421
|
+
}
|
|
1422
|
+
},
|
|
1423
|
+
"displayOptions": {
|
|
1424
|
+
"show": {
|
|
1425
|
+
"resource": [
|
|
1426
|
+
"Auto Invest"
|
|
1427
|
+
],
|
|
1428
|
+
"operation": [
|
|
1429
|
+
"POST Sapi V 1 Lending Auto Invest Plan Add"
|
|
1430
|
+
]
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1309
1434
|
{
|
|
1310
1435
|
"displayName": "POST /sapi/v1/lending/auto-invest/plan/edit",
|
|
1311
1436
|
"name": "operation",
|
|
@@ -1687,6 +1812,31 @@ exports.autoInvestDescription = [
|
|
|
1687
1812
|
}
|
|
1688
1813
|
}
|
|
1689
1814
|
},
|
|
1815
|
+
{
|
|
1816
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
1817
|
+
"name": "security_apikeyauth",
|
|
1818
|
+
"type": "string",
|
|
1819
|
+
"default": "",
|
|
1820
|
+
"description": "Binance Public API Key",
|
|
1821
|
+
"required": false,
|
|
1822
|
+
"routing": {
|
|
1823
|
+
"request": {
|
|
1824
|
+
"headers": {
|
|
1825
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
1826
|
+
}
|
|
1827
|
+
}
|
|
1828
|
+
},
|
|
1829
|
+
"displayOptions": {
|
|
1830
|
+
"show": {
|
|
1831
|
+
"resource": [
|
|
1832
|
+
"Auto Invest"
|
|
1833
|
+
],
|
|
1834
|
+
"operation": [
|
|
1835
|
+
"POST Sapi V 1 Lending Auto Invest Plan Edit"
|
|
1836
|
+
]
|
|
1837
|
+
}
|
|
1838
|
+
}
|
|
1839
|
+
},
|
|
1690
1840
|
{
|
|
1691
1841
|
"displayName": "POST /sapi/v1/lending/auto-invest/plan/edit-status",
|
|
1692
1842
|
"name": "operation",
|
|
@@ -1847,6 +1997,31 @@ exports.autoInvestDescription = [
|
|
|
1847
1997
|
}
|
|
1848
1998
|
}
|
|
1849
1999
|
},
|
|
2000
|
+
{
|
|
2001
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
2002
|
+
"name": "security_apikeyauth",
|
|
2003
|
+
"type": "string",
|
|
2004
|
+
"default": "",
|
|
2005
|
+
"description": "Binance Public API Key",
|
|
2006
|
+
"required": false,
|
|
2007
|
+
"routing": {
|
|
2008
|
+
"request": {
|
|
2009
|
+
"headers": {
|
|
2010
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
2011
|
+
}
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"displayOptions": {
|
|
2015
|
+
"show": {
|
|
2016
|
+
"resource": [
|
|
2017
|
+
"Auto Invest"
|
|
2018
|
+
],
|
|
2019
|
+
"operation": [
|
|
2020
|
+
"POST Sapi V 1 Lending Auto Invest Plan Edit Status"
|
|
2021
|
+
]
|
|
2022
|
+
}
|
|
2023
|
+
}
|
|
2024
|
+
},
|
|
1850
2025
|
{
|
|
1851
2026
|
"displayName": "GET /sapi/v1/lending/auto-invest/plan/list",
|
|
1852
2027
|
"name": "operation",
|
|
@@ -1968,6 +2143,31 @@ exports.autoInvestDescription = [
|
|
|
1968
2143
|
}
|
|
1969
2144
|
}
|
|
1970
2145
|
},
|
|
2146
|
+
{
|
|
2147
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
2148
|
+
"name": "security_apikeyauth",
|
|
2149
|
+
"type": "string",
|
|
2150
|
+
"default": "",
|
|
2151
|
+
"description": "Binance Public API Key",
|
|
2152
|
+
"required": false,
|
|
2153
|
+
"routing": {
|
|
2154
|
+
"request": {
|
|
2155
|
+
"headers": {
|
|
2156
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
2157
|
+
}
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
"displayOptions": {
|
|
2161
|
+
"show": {
|
|
2162
|
+
"resource": [
|
|
2163
|
+
"Auto Invest"
|
|
2164
|
+
],
|
|
2165
|
+
"operation": [
|
|
2166
|
+
"GET Sapi V 1 Lending Auto Invest Plan List"
|
|
2167
|
+
]
|
|
2168
|
+
}
|
|
2169
|
+
}
|
|
2170
|
+
},
|
|
1971
2171
|
{
|
|
1972
2172
|
"displayName": "GET /sapi/v1/lending/auto-invest/plan/id",
|
|
1973
2173
|
"name": "operation",
|
|
@@ -2112,6 +2312,31 @@ exports.autoInvestDescription = [
|
|
|
2112
2312
|
}
|
|
2113
2313
|
}
|
|
2114
2314
|
},
|
|
2315
|
+
{
|
|
2316
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
2317
|
+
"name": "security_apikeyauth",
|
|
2318
|
+
"type": "string",
|
|
2319
|
+
"default": "",
|
|
2320
|
+
"description": "Binance Public API Key",
|
|
2321
|
+
"required": false,
|
|
2322
|
+
"routing": {
|
|
2323
|
+
"request": {
|
|
2324
|
+
"headers": {
|
|
2325
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
},
|
|
2329
|
+
"displayOptions": {
|
|
2330
|
+
"show": {
|
|
2331
|
+
"resource": [
|
|
2332
|
+
"Auto Invest"
|
|
2333
|
+
],
|
|
2334
|
+
"operation": [
|
|
2335
|
+
"GET Sapi V 1 Lending Auto Invest Plan Id"
|
|
2336
|
+
]
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
},
|
|
2115
2340
|
{
|
|
2116
2341
|
"displayName": "GET /sapi/v1/lending/auto-invest/history/list",
|
|
2117
2342
|
"name": "operation",
|
|
@@ -2398,6 +2623,31 @@ exports.autoInvestDescription = [
|
|
|
2398
2623
|
}
|
|
2399
2624
|
}
|
|
2400
2625
|
},
|
|
2626
|
+
{
|
|
2627
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
2628
|
+
"name": "security_apikeyauth",
|
|
2629
|
+
"type": "string",
|
|
2630
|
+
"default": "",
|
|
2631
|
+
"description": "Binance Public API Key",
|
|
2632
|
+
"required": false,
|
|
2633
|
+
"routing": {
|
|
2634
|
+
"request": {
|
|
2635
|
+
"headers": {
|
|
2636
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
2637
|
+
}
|
|
2638
|
+
}
|
|
2639
|
+
},
|
|
2640
|
+
"displayOptions": {
|
|
2641
|
+
"show": {
|
|
2642
|
+
"resource": [
|
|
2643
|
+
"Auto Invest"
|
|
2644
|
+
],
|
|
2645
|
+
"operation": [
|
|
2646
|
+
"GET Sapi V 1 Lending Auto Invest History List"
|
|
2647
|
+
]
|
|
2648
|
+
}
|
|
2649
|
+
}
|
|
2650
|
+
},
|
|
2401
2651
|
{
|
|
2402
2652
|
"displayName": "GET /sapi/v1/lending/auto-invest/index/info",
|
|
2403
2653
|
"name": "operation",
|
|
@@ -2519,6 +2769,31 @@ exports.autoInvestDescription = [
|
|
|
2519
2769
|
}
|
|
2520
2770
|
}
|
|
2521
2771
|
},
|
|
2772
|
+
{
|
|
2773
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
2774
|
+
"name": "security_apikeyauth",
|
|
2775
|
+
"type": "string",
|
|
2776
|
+
"default": "",
|
|
2777
|
+
"description": "Binance Public API Key",
|
|
2778
|
+
"required": false,
|
|
2779
|
+
"routing": {
|
|
2780
|
+
"request": {
|
|
2781
|
+
"headers": {
|
|
2782
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
2783
|
+
}
|
|
2784
|
+
}
|
|
2785
|
+
},
|
|
2786
|
+
"displayOptions": {
|
|
2787
|
+
"show": {
|
|
2788
|
+
"resource": [
|
|
2789
|
+
"Auto Invest"
|
|
2790
|
+
],
|
|
2791
|
+
"operation": [
|
|
2792
|
+
"GET Sapi V 1 Lending Auto Invest Index Info"
|
|
2793
|
+
]
|
|
2794
|
+
}
|
|
2795
|
+
}
|
|
2796
|
+
},
|
|
2522
2797
|
{
|
|
2523
2798
|
"displayName": "GET /sapi/v1/lending/auto-invest/index/user-summary",
|
|
2524
2799
|
"name": "operation",
|
|
@@ -2640,6 +2915,31 @@ exports.autoInvestDescription = [
|
|
|
2640
2915
|
}
|
|
2641
2916
|
}
|
|
2642
2917
|
},
|
|
2918
|
+
{
|
|
2919
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
2920
|
+
"name": "security_apikeyauth",
|
|
2921
|
+
"type": "string",
|
|
2922
|
+
"default": "",
|
|
2923
|
+
"description": "Binance Public API Key",
|
|
2924
|
+
"required": false,
|
|
2925
|
+
"routing": {
|
|
2926
|
+
"request": {
|
|
2927
|
+
"headers": {
|
|
2928
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
2929
|
+
}
|
|
2930
|
+
}
|
|
2931
|
+
},
|
|
2932
|
+
"displayOptions": {
|
|
2933
|
+
"show": {
|
|
2934
|
+
"resource": [
|
|
2935
|
+
"Auto Invest"
|
|
2936
|
+
],
|
|
2937
|
+
"operation": [
|
|
2938
|
+
"GET Sapi V 1 Lending Auto Invest Index User Summary"
|
|
2939
|
+
]
|
|
2940
|
+
}
|
|
2941
|
+
}
|
|
2942
|
+
},
|
|
2643
2943
|
{
|
|
2644
2944
|
"displayName": "POST /sapi/v1/lending/auto-invest/one-off",
|
|
2645
2945
|
"name": "operation",
|
|
@@ -2931,6 +3231,31 @@ exports.autoInvestDescription = [
|
|
|
2931
3231
|
}
|
|
2932
3232
|
}
|
|
2933
3233
|
},
|
|
3234
|
+
{
|
|
3235
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
3236
|
+
"name": "security_apikeyauth",
|
|
3237
|
+
"type": "string",
|
|
3238
|
+
"default": "",
|
|
3239
|
+
"description": "Binance Public API Key",
|
|
3240
|
+
"required": false,
|
|
3241
|
+
"routing": {
|
|
3242
|
+
"request": {
|
|
3243
|
+
"headers": {
|
|
3244
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
3245
|
+
}
|
|
3246
|
+
}
|
|
3247
|
+
},
|
|
3248
|
+
"displayOptions": {
|
|
3249
|
+
"show": {
|
|
3250
|
+
"resource": [
|
|
3251
|
+
"Auto Invest"
|
|
3252
|
+
],
|
|
3253
|
+
"operation": [
|
|
3254
|
+
"POST Sapi V 1 Lending Auto Invest One Off"
|
|
3255
|
+
]
|
|
3256
|
+
}
|
|
3257
|
+
}
|
|
3258
|
+
},
|
|
2934
3259
|
{
|
|
2935
3260
|
"displayName": "GET /sapi/v1/lending/auto-invest/one-off/status",
|
|
2936
3261
|
"name": "operation",
|
|
@@ -3076,6 +3401,31 @@ exports.autoInvestDescription = [
|
|
|
3076
3401
|
}
|
|
3077
3402
|
}
|
|
3078
3403
|
},
|
|
3404
|
+
{
|
|
3405
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
3406
|
+
"name": "security_apikeyauth",
|
|
3407
|
+
"type": "string",
|
|
3408
|
+
"default": "",
|
|
3409
|
+
"description": "Binance Public API Key",
|
|
3410
|
+
"required": false,
|
|
3411
|
+
"routing": {
|
|
3412
|
+
"request": {
|
|
3413
|
+
"headers": {
|
|
3414
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
3415
|
+
}
|
|
3416
|
+
}
|
|
3417
|
+
},
|
|
3418
|
+
"displayOptions": {
|
|
3419
|
+
"show": {
|
|
3420
|
+
"resource": [
|
|
3421
|
+
"Auto Invest"
|
|
3422
|
+
],
|
|
3423
|
+
"operation": [
|
|
3424
|
+
"GET Sapi V 1 Lending Auto Invest One Off Status"
|
|
3425
|
+
]
|
|
3426
|
+
}
|
|
3427
|
+
}
|
|
3428
|
+
},
|
|
3079
3429
|
{
|
|
3080
3430
|
"displayName": "POST /sapi/v1/lending/auto-invest/redeem",
|
|
3081
3431
|
"name": "operation",
|
|
@@ -3249,6 +3599,31 @@ exports.autoInvestDescription = [
|
|
|
3249
3599
|
}
|
|
3250
3600
|
}
|
|
3251
3601
|
},
|
|
3602
|
+
{
|
|
3603
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
3604
|
+
"name": "security_apikeyauth",
|
|
3605
|
+
"type": "string",
|
|
3606
|
+
"default": "",
|
|
3607
|
+
"description": "Binance Public API Key",
|
|
3608
|
+
"required": false,
|
|
3609
|
+
"routing": {
|
|
3610
|
+
"request": {
|
|
3611
|
+
"headers": {
|
|
3612
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
3613
|
+
}
|
|
3614
|
+
}
|
|
3615
|
+
},
|
|
3616
|
+
"displayOptions": {
|
|
3617
|
+
"show": {
|
|
3618
|
+
"resource": [
|
|
3619
|
+
"Auto Invest"
|
|
3620
|
+
],
|
|
3621
|
+
"operation": [
|
|
3622
|
+
"POST Sapi V 1 Lending Auto Invest Redeem"
|
|
3623
|
+
]
|
|
3624
|
+
}
|
|
3625
|
+
}
|
|
3626
|
+
},
|
|
3252
3627
|
{
|
|
3253
3628
|
"displayName": "GET /sapi/v1/lending/auto-invest/redeem/history",
|
|
3254
3629
|
"name": "operation",
|
|
@@ -3494,6 +3869,31 @@ exports.autoInvestDescription = [
|
|
|
3494
3869
|
}
|
|
3495
3870
|
}
|
|
3496
3871
|
},
|
|
3872
|
+
{
|
|
3873
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
3874
|
+
"name": "security_apikeyauth",
|
|
3875
|
+
"type": "string",
|
|
3876
|
+
"default": "",
|
|
3877
|
+
"description": "Binance Public API Key",
|
|
3878
|
+
"required": false,
|
|
3879
|
+
"routing": {
|
|
3880
|
+
"request": {
|
|
3881
|
+
"headers": {
|
|
3882
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
3883
|
+
}
|
|
3884
|
+
}
|
|
3885
|
+
},
|
|
3886
|
+
"displayOptions": {
|
|
3887
|
+
"show": {
|
|
3888
|
+
"resource": [
|
|
3889
|
+
"Auto Invest"
|
|
3890
|
+
],
|
|
3891
|
+
"operation": [
|
|
3892
|
+
"GET Sapi V 1 Lending Auto Invest Redeem History"
|
|
3893
|
+
]
|
|
3894
|
+
}
|
|
3895
|
+
}
|
|
3896
|
+
},
|
|
3497
3897
|
{
|
|
3498
3898
|
"displayName": "GET /sapi/v1/lending/auto-invest/rebalance/history",
|
|
3499
3899
|
"name": "operation",
|
|
@@ -3690,5 +4090,30 @@ exports.autoInvestDescription = [
|
|
|
3690
4090
|
}
|
|
3691
4091
|
}
|
|
3692
4092
|
},
|
|
4093
|
+
{
|
|
4094
|
+
"displayName": "X MBX APIKEY (Header)",
|
|
4095
|
+
"name": "security_apikeyauth",
|
|
4096
|
+
"type": "string",
|
|
4097
|
+
"default": "",
|
|
4098
|
+
"description": "Binance Public API Key",
|
|
4099
|
+
"required": false,
|
|
4100
|
+
"routing": {
|
|
4101
|
+
"request": {
|
|
4102
|
+
"headers": {
|
|
4103
|
+
"X-MBX-APIKEY": "={{ $value }}"
|
|
4104
|
+
}
|
|
4105
|
+
}
|
|
4106
|
+
},
|
|
4107
|
+
"displayOptions": {
|
|
4108
|
+
"show": {
|
|
4109
|
+
"resource": [
|
|
4110
|
+
"Auto Invest"
|
|
4111
|
+
],
|
|
4112
|
+
"operation": [
|
|
4113
|
+
"GET Sapi V 1 Lending Auto Invest Rebalance History"
|
|
4114
|
+
]
|
|
4115
|
+
}
|
|
4116
|
+
}
|
|
4117
|
+
},
|
|
3693
4118
|
];
|
|
3694
4119
|
//# sourceMappingURL=index.js.map
|