UNPKG

@nomiclabs/buidler

Version:

Buidler is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.

14 lines 784 B
import { IEthereumProvider } from "../../../types"; export interface JsonRpcTransactionData { from?: string; to?: string; gas?: string | number; gasPrice?: string | number; value?: string | number; data?: string; nonce?: string | number; } export declare function createLocalAccountsProvider(provider: IEthereumProvider, hexPrivateKeys: string[]): import("../../../types").EthereumProvider; export declare function createHDWalletProvider(provider: IEthereumProvider, mnemonic: string, hdpath?: string, initialIndex?: number, count?: number): import("../../../types").EthereumProvider; export declare function createSenderProvider(provider: IEthereumProvider, from?: string): import("../../../types").EthereumProvider; //# sourceMappingURL=accounts.d.ts.map