Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds connection keep-alive and response compresion to RPC calls. #167

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/data_sources/events/web3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { Web3Wrapper } from '@0x/web3-wrapper';
import { RawLog } from 'ethereum-types';

const Web3 = require('web3');
const Web3HttpProvider = require('web3-providers-http');

export { BlockWithTransactionData, BlockWithoutTransactionData, Transaction, TransactionReceipt } from './web3_updated';

Expand All @@ -32,8 +33,15 @@ export class Web3Source {
private readonly _web3Wrapper: Web3Wrapper;
private readonly _web3: any;
constructor(provider: Web3ProviderEngine, wsProvider: string) {
const web3HttpOptions = {
keepAlive: true,
headers: [
{ name: 'Accept-Encoding', value: 'gzip'}
]
};

this._web3Wrapper = new Web3Wrapper(provider);
this._web3 = new Web3(wsProvider);
this._web3 = new Web3(new Web3HttpProvider(wsProvider, web3HttpOptions));

if (BLOCK_RECEIPTS_MODE === 'standard') {
this._web3.eth.extend({
Expand Down
Loading