quartz/wallet/node_modules/@ethersproject/random/src.ts/random.ts
2022-03-04 20:05:23 +08:00

8 lines
208 B
TypeScript

import { randomBytes as _randomBytes } from "crypto";
import { arrayify } from "@ethersproject/bytes";
export function randomBytes(length: number): Uint8Array {
return arrayify(_randomBytes(length));
}