hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
18 lines • 728 B
TypeScript
/// <reference types="node" />
/// <reference types="node" />
import type EthereumjsUtilT from "@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: () => `0x${string}`;
export declare const randomHashBuffer: () => Uint8Array;
export declare const randomAddress: () => EthereumjsUtilT.Address;
export declare const randomAddressString: () => `0x${string}`;
export declare const randomAddressBuffer: () => Uint8Array;
//# sourceMappingURL=random.d.ts.map