Skip to content

Instantly share code, notes, and snippets.

@evbots
Last active September 7, 2018 18:02
Show Gist options
  • Save evbots/ac18e4140983c5f7624b752f8cf1a7a2 to your computer and use it in GitHub Desktop.
Save evbots/ac18e4140983c5f7624b752f8cf1a7a2 to your computer and use it in GitHub Desktop.
// ZRX Token Example
var request = require("request");
var options = {
method: 'GET',
url: 'https://api.chainrelay.com/v0/1/events/0xe41d2489571d322189246dafa5ebde1f4699f498',
qs: { token: 'YOUR_API_TOKEN', fromBlock: '6100000' }
};
request(options, function (error, response, body) {
console.log(body);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment