Augur market monitor/cache.
$ npm install marketeer
var marketeer = require("marketeer");
marketeer.scan
fetches up-to-date data for all Augur markets from the Ethereum blockchain, and stores it in levelDB:
var config = {
http: "rpc_server url", //specify at least 1 of http, ws, or ipc
ws: "websocket server url",
ipc: "path to geth.ipc",
db: "./path_to_db", //will be created automatically if doesn't exist already
limit: null, //How many markets to fetch (null for all)
filtering: true, //Listen for new markets, price changes, etc? (only used with watch)
scan: true, //Scan blockchain for markets on startup?
}
marketeer.scan(config, function (err, numUpdates) {
if (err) throw err;
console.log("Oh happy day!", numUpdates, "markets have been updated!");
// fun times here
});
marketeer.watch
creates a persistent blockchain listener.
marketeer.watch(config, function (err, numUpdates, data) {
if (err) throw err;
console.log("Oh happy day!", numUpdates, "markets have been updated!");
// fun times here
});
marketeer.unwatch
stops watching the blockchain, removes the filters, and closes the database connection.
//returns marketInfo for a single market
marketeer.getMarketInfo(id, function (err, market){ ... });
//returns a strem of all basic market info for all markets in a branch
marketeer.getMarketsInfo(options, function (err, stream){ ... });
You can consume the contents of the stream by doing:
stream.on('data', (data) => {
console.log(data);
}).on('end', () => {
console.log("finished");
});
The options parameter allows you to limit the results of the stream. It should be in the format
var options = { blockId: ['eq', 4],
volume: ['gt', 100]}
The key is the field you'd like to filter on, the first item in the array is the filter operation (eq, lt, lte, gt, gte), and the second value in the array is the value you are comparing against.
//retuns full market data for an array of market ids
marketeer.batchGetMarketInfo(ids, function (err, markets) { ... });
var options = {
toBlock: blockNumber
fromBlock: blockNumber
}
//returns price history for a single market
//options is an optional param. w/o it, returns price history for all blocks
marketeer.getMarketPriceHistory(id, options, function (err, history) { ... });
var options = {
toBlock: blockNumber
fromBlock: blockNumber
}
//returns trade history for a single user
//options is an optional param. w/o it, returns trade history for all blocks
marketeer.getAccountTrades(id, options, function (err, trades) { ... });
These tests require two geth testnet accounts funded with cash and testnet ether, as they simulate trading back and forth to test marketeer's listeners.
$ npm test