All URIs are relative to https://api.gateio.ws/api/v4
Method | HTTP request | Description |
---|---|---|
listCurrencyChains | GET /wallet/currency_chains | List chains supported for specified currency |
[CurrencyChain] listCurrencyChains(currency)
List chains supported for specified currency
var GateApi = require('gate-api');
var apiInstance = new GateApi.WalletApi();
var currency = "GT"; // String | Currency name
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.listCurrencyChains(currency, callback);
Name | Type | Description | Notes |
---|---|---|---|
currency | String | Currency name |
No authorization required
- Content-Type: Not defined
- Accept: application/json