1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00
metamask-extension/app/scripts/controllers/network/middleware/pending.js

36 lines
946 B
JavaScript
Raw Normal View History

2020-12-02 20:41:24 +01:00
import { createAsyncMiddleware } from 'json-rpc-engine'
import { formatTxMetaForRpcResult } from '../util'
2020-11-03 00:41:28 +01:00
export function createPendingNonceMiddleware({ getPendingNonce }) {
return createAsyncMiddleware(async (req, res, next) => {
2019-12-03 21:50:55 +01:00
const { method, params } = req
if (method !== 'eth_getTransactionCount') {
next()
return
}
const [param, blockRef] = params
if (blockRef !== 'pending') {
next()
return
}
res.result = await getPendingNonce(param)
})
}
2020-11-03 00:41:28 +01:00
export function createPendingTxMiddleware({ getPendingTransactionByHash }) {
return createAsyncMiddleware(async (req, res, next) => {
2019-12-03 21:50:55 +01:00
const { method, params } = req
if (method !== 'eth_getTransactionByHash') {
next()
return
}
const [hash] = params
const txMeta = getPendingTransactionByHash(hash)
if (!txMeta) {
next()
return
}
res.result = formatTxMetaForRpcResult(txMeta)
})
}