@aries-markets/api
v0.3.2
Published
Client side library to use Aries APIs
Downloads
77
Readme
Aries API
API endpoints for Aries
Using the client library
import { getClient } from '@aries-markets/api';
const trpc = getClient('http://endpoint.com');
const status = await trpc.status.query();
Running the server
# development - watch
$ npm run start
# production mode
$ npm run start:prod