블록체인 개발1 [NFT 101] Frontend 개발 Frontend는 React로 구성되어 있고, 하단에 소스를 첨부하였다. 내용이 길어 주요 부분만 기록해 둔다. const [account, setAccount] = useState(""); const getAccount = async() => { try { if (window.ethereum) { const accounts = await window.ethereum.request({ method: "eth_requestAccounts" }); setAccount(accounts[0]); } } catch (error) { console.log(error); } }; useEffect(() => { getAccount(); }, [account]); window.ethereum.request로 metam.. 2022. 3. 25. 이전 1 다음