databag/app/mobile/api/getNodeAccounts.js
2022-09-07 00:32:06 -07:00

9 lines
267 B
JavaScript

import { checkResponse, fetchWithTimeout } from './fetchUtil';
export async function getNodeAccounts(token) {
let accounts = await fetchWithTimeout(`/admin/accounts?token=${token}`, { method: 'GET' });
checkResponse(accounts);
return await accounts.json();
}