0.10.1 • Published 6 years ago
@random-guys/ibs-service v0.10.1
ibs-service
IBS service as a nodejs library
How to install?
yarn add @radom-guys/ibs-service
How does it work?
import { IBSService } from '@random-guys/ibs-service';
import { unsafeClient, unsafeRun } from '@random-guys/lux';
unsafeRun(async () => {
let client = await unsafeClient(SERVICE_URL)
let service = new IBSService(client, 103, {
key: SHARED_KEY,
vector: SHARED_VECTOR
})
let account = await service.AccountInfo(account_number)
// do something with account
})