-
Notifications
You must be signed in to change notification settings - Fork 211
Closed
Description
Issue type
- bug
- missing functionality
- performance
- feature request
Brief description
Public funding trade mapping is wrong. There is no maker column in public funding trades.
Steps to reproduce
const BFX = require('bitfinex-api-node');
const bfx = new BFX(
{
apiKey: 'xxxxx',
apiSecret: 'xxxxx',
ws: {
autoReconnect: true,
},
},
);
const ws = bfx.ws(2, { transform: true });
ws.once('open', () => {
ws.subscribeTrades(`fUSD`);
ws.on('trades', console.log);
});
ws.open();
output:
fUSD [
{
id: 161367901,
symbol: 1594289406000,
mtsCreate: -51.4457011,
offerID: 0.00020119,
amount: 3,
rate: undefined,
period: undefined,
maker: undefined
}
]
Additional Notes:
I had found the same issue in 4.0.2 - 4.0.15 ;(
Metadata
Metadata
Assignees
Labels
No labels