tardis-dev
Version:
Convenient access to tick-level historical and real-time cryptocurrency market data via Node.js
108 lines • 4.3 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.CoinbaseRealTimeFeed = void 0;
const crypto_1 = __importDefault(require("crypto"));
const realtimefeed_1 = require("./realtimefeed");
class CoinbaseRealTimeFeed extends realtimefeed_1.RealTimeFeedBase {
constructor() {
super(...arguments);
this._hasCredentials = process.env.COINBASE_API_KEY !== undefined &&
process.env.COINBASE_API_SECRET !== undefined &&
process.env.COINBASE_API_PASSPHRASE !== undefined;
// map from coinbase subscribe 'channels' to more granular channels that tardis uses
this.channelMappings = {
full: ['received', 'open', 'done', 'match', 'change', 'full_snapshot'],
level2: ['snapshot', 'l2update'],
matches: ['match', 'last_match'],
ticker: ['ticker']
};
}
get wssURL() {
return this._hasCredentials ? 'wss://ws-direct.exchange.coinbase.com' : 'wss://ws-feed.exchange.coinbase.com';
}
mapToSubscribeMessages(filters) {
const channelsToSubscribe = filters
.map((filter) => {
if (!filter.symbols || filter.symbols.length === 0) {
throw new Error('CoinbaseRealTimeFeed requires explicitly specified symbols when subscribing to live feed');
}
const subscribeToFullChannel = filters.filter((f) => this.channelMappings.full.includes(f.channel) && f.channel !== 'match').length > 0;
const subscribeToLevel2Channel = this.channelMappings.level2.includes(filter.channel);
const subscribeToMatchesChannel = this.channelMappings.matches.includes(filter.channel);
let channel;
if (subscribeToFullChannel) {
channel = 'full';
}
else if (subscribeToLevel2Channel) {
if (this._hasCredentials) {
channel = 'level2';
}
else {
// for not authenticated connections use batch channel, non batched l2 updates require auth
channel = 'level2_batch';
}
}
else if (subscribeToMatchesChannel) {
channel = 'matches';
}
else {
channel = 'ticker';
}
return {
name: channel,
product_ids: filter.symbols
};
})
.reduce((prev, current) => {
const matchingExisting = prev.find((c) => c.name === current.name);
if (matchingExisting !== undefined) {
for (const symbol of current.product_ids) {
if (matchingExisting.product_ids.includes(symbol) === false) {
matchingExisting.product_ids.push(symbol);
}
}
}
else {
prev.push(current);
}
return prev;
}, []);
if (this._hasCredentials) {
const authParams = this.getAuthParams();
return [
{
type: 'subscribe',
channels: channelsToSubscribe,
...authParams
}
];
}
return [
{
type: 'subscribe',
channels: channelsToSubscribe
}
];
}
getAuthParams() {
const timestamp = Date.now().valueOf() / 1000;
const apiSecret = process.env.COINBASE_API_SECRET;
const message = `${timestamp}GET/users/self/verify`;
const hmac = crypto_1.default.createHmac('sha256', Buffer.from(apiSecret, 'base64'));
const signature = hmac.update(message).digest('base64');
return {
signature,
key: process.env.COINBASE_API_KEY,
passphrase: process.env.COINBASE_API_PASSPHRASE,
timestamp
};
}
messageIsError(message) {
return message.type === 'error';
}
}
exports.CoinbaseRealTimeFeed = CoinbaseRealTimeFeed;
//# sourceMappingURL=coinbase.js.map