Reference: Get Asset Info
import { publicRestRequest } from 'ts-kraken'; publicRestRequest({ url: 'Assets', params: { asset: 'XXBT,XETH' } }) .then(({ XXBT, XETH }) => { console.log({ XXBT, XETH }); }); Copy
import { publicRestRequest } from 'ts-kraken'; publicRestRequest({ url: 'Assets', params: { asset: 'XXBT,XETH' } }) .then(({ XXBT, XETH }) => { console.log({ XXBT, XETH }); });
Reference: Get Asset Info
Example