@vechain/sdk-network
Version:
This module serves as the standard interface connecting decentralized applications (dApps) and users to the VeChainThor blockchain
16 lines (14 loc) • 362 B
text/typescript
/**
* RPC Method txpool_inspect implementation
*
* @link [txpool_inspect](https://www.quicknode.com/docs/ethereum/txpool_inspect)
*
* @note
* * We return a constant empty object for now.
*
* @returns The transaction pool status
*/
const txPoolInspect = async (): Promise<object> => {
return await Promise.resolve({});
};
export { txPoolInspect };