feat(#186): add proxy & rate limits example. Misc doc updates.
This commit is contained in:
18
examples/deprecated/rest-spot-public.ts
Normal file
18
examples/deprecated/rest-spot-public.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import { SpotClientV3 } from '../../src/index';
|
||||
|
||||
// or
|
||||
// import { SpotClientV3 } from 'bybit-api';
|
||||
|
||||
const client = new SpotClientV3();
|
||||
|
||||
const symbol = 'BTCUSDT';
|
||||
|
||||
(async () => {
|
||||
try {
|
||||
// console.log('getSymbols: ', await client.getSymbols());
|
||||
// console.log('getOrderBook: ', await client.getOrderBook(symbol));
|
||||
console.log('getOrderBook: ', await client.getOrderBook(symbol));
|
||||
} catch (e) {
|
||||
console.error('request failed: ', e);
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user