You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
968 B
35 lines
968 B
import createAsyncMiddleware from 'json-rpc-engine/src/createAsyncMiddleware'
|
|
import { formatTxMetaForRpcResult } from '../util'
|
|
|
|
export function createPendingNonceMiddleware({ getPendingNonce }) {
|
|
return createAsyncMiddleware(async (req, res, next) => {
|
|
const { method, params } = req
|
|
if (method !== 'eth_getTransactionCount') {
|
|
next()
|
|
return
|
|
}
|
|
const [param, blockRef] = params
|
|
if (blockRef !== 'pending') {
|
|
next()
|
|
return
|
|
}
|
|
res.result = await getPendingNonce(param)
|
|
})
|
|
}
|
|
|
|
export function createPendingTxMiddleware({ getPendingTransactionByHash }) {
|
|
return createAsyncMiddleware(async (req, res, next) => {
|
|
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)
|
|
})
|
|
}
|
|
|