Apots和sui钱包遇到的问题

安装aptops遇到的版本兼容问题

"@manahippo/aptos-wallet-adapter": "^1.0.2",
./node_modules/aptos/dist/index.mjs
Can't import the named export 'bytesToHex' from non EcmaScript module (only default export is available)

遇到了这个问题,网上也有很多
Can't import the named export XXXX from non EcmaScript module (only default export is available) 的解决办法,大都是修改webpack的配置。
但是我发现造成这个问题的根本原因是 "react-scripts"的版本太低了。
“react-scripts”: “^2.1.3”, 升级成 “react-scripts”: “5.0.1”,
问题就解决了

安装sui遇到的版本兼容问题

"@suiet/wallet-kit": "^0.1.9",
./src/components/XXXX.js
Module not found: Can't resolve '@suiet/wallet-kit/style.css' in 自己的文件夹下

百思不得其解,最后发现这个问题也是react-scripts 的版本太低导致的
把"react-scripts": “^2.1.3”, 升级成 “react-scripts”: “5.0.1”,
问题就解决了

你可能感兴趣的:(react,web3,javascript,前端,react.js)