6 lines
239 B
JavaScript
6 lines
239 B
JavaScript
|
import * as env from "@walletconnect/environment";
|
||
|
export function randomBytes(length) {
|
||
|
const browserCrypto = env.getBrowerCrypto();
|
||
|
return browserCrypto.getRandomValues(new Uint8Array(length));
|
||
|
}
|
||
|
//# sourceMappingURL=index.js.map
|