getActions method

Future<Actions> getActions(
  1. String accountName, {
  2. int pos = -1,
  3. int offset = -1,
})

Get EOS account actions

Implementation

Future<Actions> getActions(String accountName,
    {int pos = -1, int offset = -1}) async {
  return this._post('/history/get_actions', {
    'account_name': accountName,
    'pot': pos,
    'offset': offset
  }).then((actions) {
    return Actions.fromJson(actions);
  });
}