@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) • 357 B
text/typescript
/**
* RPC Method txpool_status implementation
*
* @link [txpool_status](https://www.quicknode.com/docs/ethereum/txpool_status)
*
* @note
* * We return a constant empty object for now.
*
* @returns The transaction pool status
*/
const txPoolStatus = async (): Promise<object> => {
return await Promise.resolve({});
};
export { txPoolStatus };