You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on the file created from #9, we should create function from steemd API dynamically. The goal is to allow this kind of possibility with lightrpc:
// with callback
client.getAccounts(['fabien'], (err, result) => {});
// with promise
client.getAccounts(['fabien']).then(result => {});
// with named params
client.getAccounts({ names: ['fabien'] }, (err, result) => {});
// with named params and promise
client.getAccounts({ names: ['fabien'] }).then(result => {});
// empty param should display description of the method
client.getAccounts();
The text was updated successfully, but these errors were encountered:
Blocked by #9
Based on the file created from #9, we should create function from steemd API dynamically. The goal is to allow this kind of possibility with lightrpc:
The text was updated successfully, but these errors were encountered: