diff options
author | Ara Kevonian <=> | 2018-03-30 20:45:24 +0800 |
---|---|---|
committer | Ara Kevonian <=> | 2018-03-30 20:59:09 +0800 |
commit | 57ca611e12d2e40c3f0f33023544a890be7ccb87 (patch) | |
tree | a5ca930194d4295a25b5af7aa683d34a36b5b273 /packages/0x.js/src/order_watcher/event_watcher.ts | |
parent | 6122840241a47119b046b639e326cfead1ea3e10 (diff) | |
download | dexon-sol-tools-57ca611e12d2e40c3f0f33023544a890be7ccb87.tar.gz dexon-sol-tools-57ca611e12d2e40c3f0f33023544a890be7ccb87.tar.zst dexon-sol-tools-57ca611e12d2e40c3f0f33023544a890be7ccb87.zip |
Monitor different state layers with OrderWatcher
Allow instantiation of stand-alone OrderWatchers
that can monitor different blockchain state
layers (e.g. pending or latest)
Diffstat (limited to 'packages/0x.js/src/order_watcher/event_watcher.ts')
-rw-r--r-- | packages/0x.js/src/order_watcher/event_watcher.ts | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/packages/0x.js/src/order_watcher/event_watcher.ts b/packages/0x.js/src/order_watcher/event_watcher.ts index 246ab8292..deb1ffbff 100644 --- a/packages/0x.js/src/order_watcher/event_watcher.ts +++ b/packages/0x.js/src/order_watcher/event_watcher.ts @@ -22,8 +22,10 @@ export class EventWatcher { private _pollingIntervalMs: number; private _intervalIdIfExists?: NodeJS.Timer; private _lastEvents: LogEntry[] = []; - constructor(web3Wrapper: Web3Wrapper, pollingIntervalIfExistsMs: undefined | number) { + private _stateLayer: BlockParamLiteral; + constructor(web3Wrapper: Web3Wrapper, pollingIntervalIfExistsMs: undefined | number, stateLayer: BlockParamLiteral = BlockParamLiteral.Pending) { this._web3Wrapper = web3Wrapper; + this._stateLayer = stateLayer; this._pollingIntervalMs = _.isUndefined(pollingIntervalIfExistsMs) ? DEFAULT_EVENT_POLLING_INTERVAL_MS : pollingIntervalIfExistsMs; @@ -69,8 +71,8 @@ export class EventWatcher { } private async _getEventsAsync(): Promise<LogEntry[]> { const eventFilter = { - fromBlock: BlockParamLiteral.Pending, - toBlock: BlockParamLiteral.Pending, + fromBlock: this._stateLayer, + toBlock: this._stateLayer, }; const events = await this._web3Wrapper.getLogsAsync(eventFilter); return events; |