Skip to content

Releases: jaggedsoft/eterbase-api

Stable Release

18 Nov 22:54
3d1ca24
Compare
Choose a tag to compare

Subscribe to your own order updates with myOrdersStream

Stable Release (BREAKING CHANGE!)

05 Oct 11:57
ed462ab
Compare
Choose a tag to compare

Added .symbols() function to get all currently active trading pairs.
Markets function now returns an object instead of an array, and includes the ticker symbols.

let market = await eterbase.markets();
console.info( market["XBASE-ETH"] );

if you prefer the raw format without symbols: console.info( await eterbase.markets( { raw: true } ) );

Stable Release (BREAKING CHANGE!)

04 Oct 15:22
f9aa86b
Compare
Choose a tag to compare

Tickers function now returns an object instead of an array, and includes the ticker symbols.

let ticker = await eterbase.tickers();
console.info( ticker['ETH-USDT'] );
// Get all symbols: Object.keys(ticker)

If you prefer the raw format without symbols, await eterbase.tickers( { raw: true } );

Stable Release (BREAKING CHANGE!)

04 Oct 14:31
72d404f
Compare
Choose a tag to compare

BREAKING CHANGE: quote renamed to ticker, because a new function called 'quote' is coming soon to give the bid/ask so traditional market making is easier

added orderBook function
openOrders and orderFills can accept a string or an object

Stable Release

03 Oct 13:29
0530120
Compare
Choose a tag to compare

quote function accepts string or object, orderFills and openOrders use easier default parameters and also accept optional 'symbol' or 'id' parameters

Stable Release

01 Oct 23:22
8399713
Compare
Choose a tag to compare

You must connect to the Websocket with:
await eterbase.connect();

Fix WebSocket authentication
Automatically call initialize on connect() if necessary

Stable Release

25 Sep 22:39
c037974
Compare
Choose a tag to compare

Automatically call initialize after auth, change auth to async.

Stable Release

22 Sep 21:08
33f44f2
Compare
Choose a tag to compare

websockets + withdrawals

Stable Release

18 Sep 14:10
6ee2495
Compare
Choose a tag to compare

Change ticker to symbol for consistency
fix marketBuy marketSell limitBuy limitSell order
add orderDetail

Pre-release

13 Sep 21:09
fb2c82e
Compare
Choose a tag to compare
Pre-release Pre-release
Pre-release

Functional proof of concept, more features coming soon