UNPKG

hardhat

Version:

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

17 lines 699 B
/// <reference types="node" /> import type EthereumjsUtilT from "@nomicfoundation/ethereumjs-util"; export declare class RandomBufferGenerator { private _nextValue; private constructor(); static create(seed: string): RandomBufferGenerator; next(): Uint8Array; seed(): Uint8Array; setNext(nextValue: Buffer): void; clone(): RandomBufferGenerator; } export declare const randomHash: () => string; export declare const randomHashBuffer: () => Uint8Array; export declare const randomAddress: () => EthereumjsUtilT.Address; export declare const randomAddressString: () => string; export declare const randomAddressBuffer: () => Uint8Array; //# sourceMappingURL=random.d.ts.map