web3-eth
Version:
Web3 module to interact with the Ethereum blockchain and smart contracts.
4 lines (3 loc) • 375 B
TypeScript
import { EthExecutionAPI, HexString, Transaction } from 'web3-types';
import { Web3Context } from 'web3-core';
export declare const prepareTransactionForSigning: (transaction: Transaction, web3Context: Web3Context<EthExecutionAPI>, privateKey?: HexString | Uint8Array, fillGasPrice?: boolean, fillGasLimit?: boolean) => Promise<import("web3-eth-accounts").TypedTransaction>;