React Native ethers createRandom 发出警告平台不支持安全随机数

问题描述 投票:0回答:1

我在 React Native (0.75.3) 中使用以太币 (6.13.2) 并尝试使用函数

Wallet.createRandom()
创建一个新钱包,我收到以下控制台警告:

Possible unhandled promise rejection (id: 2):
Error: platform does not support secure
random numbers (operation="randomBytes",
code=UNSUPPORTED_OPERATION, version=6.13.2)
react-native ethers.js
1个回答
0
投票

我可以通过安装

react-native-get-random-values
(1.11.0) 然后添加到我的文件中来解决此问题:

import 'react-native-get-random-values';

© www.soinside.com 2019 - 2024. All rights reserved.