UNPKG
check-ethereum-scanner
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Safety checks for new Ethereum tokens
check-ethereum-scanner
/
Ethereum-Renounced-Contract-Scanner
/
node_modules
/
ethereum-cryptography
/
esm
/
random.js
8 lines
(7 loc)
•
207 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{ randomBytes }
from
"@noble/hashes/utils"
;
export
function
getRandomBytesSync
(
bytes
) {
return
randomBytes
(bytes); }
export
async
function
getRandomBytes
(
bytes
) {
return
randomBytes
(bytes); }