@solana/web3.js를 사용하여 솔라나 계정 생성하기 (in React native)
필요한 라이브러리를 설치한다. npm i @solana/web3.js react-native-get-random-values react-native-url-polyfill babel.config.js를 다음과 같이 수정한다. module.exports = { presets: [ [ 'module:metro-react-native-babel-preset', {unstable_transformProfile: 'hermes-stable'}, ], ], }; 프로젝트 최상단 (index.js)에 다음과 같이 설정한다. import 'react-native-get-random-values'; import 'react-native-url-polyfill/auto'; 설정이 끝난뒤 다음과 같이 계정을 생성할 수 있다..