- Consolidated duplicate UndoManagers to single instance - Fixed connection promise to only resolve on 'connected' status - Fixed WebSocketProvider import (WebsocketProvider) - Added proper doc.destroy() cleanup - Renamed isPresenceInitialized property to avoid conflict Co-Authored-By: Paperclip <noreply@paperclip.ing>
50 lines
1.6 KiB
TypeScript
50 lines
1.6 KiB
TypeScript
import type { Address } from 'abitype'
|
|
|
|
import type {
|
|
TestClient,
|
|
TestClientMode,
|
|
} from '../../clients/createTestClient.js'
|
|
import type { Transport } from '../../clients/transports/createTransport.js'
|
|
import type { ErrorType } from '../../errors/utils.js'
|
|
import type { Account } from '../../types/account.js'
|
|
import type { Chain } from '../../types/chain.js'
|
|
import type { RequestErrorType } from '../../utils/buildRequest.js'
|
|
|
|
export type InspectTxpoolReturnType = {
|
|
pending: Record<Address, Record<string, string>>
|
|
queued: Record<Address, Record<string, string>>
|
|
}
|
|
|
|
export type InspectTxpoolErrorType = RequestErrorType | ErrorType
|
|
|
|
/**
|
|
* Returns a summary of all the transactions currently pending for inclusion in the next block(s), as well as the ones that are being scheduled for future execution only.
|
|
*
|
|
* - Docs: https://viem.sh/docs/actions/test/inspectTxpool
|
|
*
|
|
* @param client - Client to use
|
|
* @returns Transaction pool inspection data. {@link InspectTxpoolReturnType}
|
|
*
|
|
* @example
|
|
* import { createTestClient, http } from 'viem'
|
|
* import { foundry } from 'viem/chains'
|
|
* import { inspectTxpool } from 'viem/test'
|
|
*
|
|
* const client = createTestClient({
|
|
* mode: 'anvil',
|
|
* chain: 'foundry',
|
|
* transport: http(),
|
|
* })
|
|
* const data = await inspectTxpool(client)
|
|
*/
|
|
export async function inspectTxpool<
|
|
chain extends Chain | undefined,
|
|
account extends Account | undefined,
|
|
>(
|
|
client: TestClient<TestClientMode, Transport, chain, account, false>,
|
|
): Promise<InspectTxpoolReturnType> {
|
|
return await client.request({
|
|
method: 'txpool_inspect',
|
|
})
|
|
}
|