UNPKG

web3-eth

Version:

Web3 module to interact with the Ethereum blockchain and smart contracts.

7 lines (6 loc) 465 B
import { TransactionTypeParser, Web3Context } from 'web3-core'; import { EthExecutionAPI } from 'web3-types'; import { InternalTransaction } from '../types.js'; export declare const defaultTransactionTypeParser: TransactionTypeParser; export declare const detectTransactionType: (transaction: InternalTransaction, web3Context?: Web3Context<EthExecutionAPI>) => string | undefined; export declare const detectRawTransactionType: (transaction: Uint8Array) => string;