@vechain/sdk-network
Version:
This module serves as the standard interface connecting decentralized applications (dApps) and users to the VeChainThor blockchain
25 lines (21 loc) • 684 B
text/typescript
import { VeChainSDKLogger } from '@vechain/sdk-logging';
/**
* RPC Method parity_nextNonce implementation
*
* @param thorClient - The thor client instance to use.
* @param params - The standard array of rpc call parameters.
* @note:
* * params[0]: ...
* * params[1]: ...
* * params[n]: ...
*/
const parityNextNonce = async (): Promise<'METHOD NOT IMPLEMENTED'> => {
// Not implemented yet
VeChainSDKLogger('warning').log({
title: 'parity_nextNonce',
messages: ['Method "parity_nextNonce" has not been implemented yet.']
});
// To avoid eslint error
return await Promise.resolve('METHOD NOT IMPLEMENTED');
};
export { parityNextNonce };