Skip to content

Instantly share code, notes, and snippets.

View chebykin's full-sized avatar

Nikita Chebykin chebykin

View GitHub Profile
@chebykin
chebykin / verify.js
Last active May 4, 2019 12:38
Verify contracts using Blockscout API
const axios = require('axios');
const assert = require('assert');
axios.interceptors.request.use(request => {
console.log('Starting Request', request);
return request;
});
const base = 'https://explorer.testnet.galtproject.io';
const COMPILER_VERSION = 'v0.5.7+commit.6da8b019';