OSDN Git Service

big boom
[bytom/Bytom-JS-SDK.git] / src / api / balances.js
1
2 /**
3  * balances Api
4  */
5 function balancesApi(http) {
6     this.http = http;
7 }
8
9 /**
10  * get balances list
11  */
12 balancesApi.prototype.list =function() {
13     return this.http.request('/list-balances', {});
14 };