本文整理匯總了TypeScript中ts/web3_wrapper.Web3Wrapper.getBlockTimestampAsync方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Web3Wrapper.getBlockTimestampAsync方法的具體用法?TypeScript Web3Wrapper.getBlockTimestampAsync怎麽用?TypeScript Web3Wrapper.getBlockTimestampAsync使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ts/web3_wrapper.Web3Wrapper
的用法示例。
在下文中一共展示了Web3Wrapper.getBlockTimestampAsync方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1:
exchangeLogFillEventEmitter.watch(async (err: Error, event: ContractEvent) => {
if (err) {
// Note: it's not entirely clear from the documentation which
// errors will be thrown by `watch`. For now, let's log the error
// to rollbar and stop watching when one occurs
errorReporter.reportAsync(err); // fire and forget
this.stopWatchingExchangeLogFillEventsAsync(); // fire and forget
return;
} else {
const args = event.args as LogFillContractEventArgs;
const isBlockPending = _.isNull(event.blockNumber);
if (!isBlockPending) {
// Hack: I've observed the behavior where a client won't register certain fill events
// and lowering the cache blockNumber fixes the issue. As a quick fix for now, simply
// set the cached blockNumber 50 below the one returned. This way, upon refreshing, a user
// would still attempt to re-fetch events from the previous 50 blocks, but won't need to
// re-fetch all events in all blocks.
// TODO: Debug if this is a race condition, and apply a more precise fix
const blockNumberToSet = event.blockNumber - 50 < 0 ? 0 : event.blockNumber - 50;
tradeHistoryStorage.setFillsLatestBlock(this.userAddress, this.networkId, blockNumberToSet);
}
const isUserMakerOrTaker = args.maker === this.userAddress ||
args.taker === this.userAddress;
if (!isUserMakerOrTaker) {
return; // We aren't interested in the fill event
}
const blockTimestamp = await this.web3Wrapper.getBlockTimestampAsync(event.blockHash);
const fill = {
filledTakerTokenAmount: args.filledTakerTokenAmount,
filledMakerTokenAmount: args.filledMakerTokenAmount,
logIndex: event.logIndex,
maker: args.maker,
orderHash: args.orderHash,
taker: args.taker,
makerToken: args.makerToken,
takerToken: args.takerToken,
paidMakerFee: args.paidMakerFee,
paidTakerFee: args.paidTakerFee,
transactionHash: event.transactionHash,
blockTimestamp,
};
tradeHistoryStorage.addFillToUser(this.userAddress, this.networkId, fill);
}
});