This is a javascript package of Olymplus with useful rpc interface.
Please read the documentation for more.
You can install the package either using NPM or using Yarn
npm install web3-olympusyarn add web3-olympusconst Olympus = require('web3-olympus');
const provider = 'https://dev-rpc.oortech.com';
const olympusRequest = new Olympus(provider);
// such as get block detail
olympusRequest.block(blockHash).then(r => console.log(r));All the TypeScript typings are placed in the types folder.