일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 |
28 | 29 | 30 |
- Redux
- express.js
- error
- HTML
- built in object
- node.js
- tailwindcss
- Ethereum
- graphQL
- useState
- nextJS
- 삶
- CLASS
- Props
- middleware
- API
- Interface
- CSS
- REACT
- solidity
- typeScript
- concept
- blockchain
- web
- evm
- SSR
- hardhat
- bitcoin
- JavaScript
- 기준
- Today
- Total
목록전체 글 (375)
ReasonJun

Ethereum uses a Key-Value based DB (leveldb). By using the hashed value of the address as the key and using the address as the path as shown in the picture on the below, you can find out the state value of the account. Ethereum Tries The Tries used in Ethereum are Storage Trie, State Trie, Transaction Trie, and Receipts Trie. Among these, the Root Hash value stored in the Block Header is State T..

Product : https://near.org/near/widget/ComponentDetailsPage?src=7649ed19fe15dead3bb479bbbf3acd3a2b337eead0999673d20b9935e4d60d8e/widget/dNFTMinting https://near.org/near/widget/ComponentDetailsPage?src=7649ed19fe15dead3bb479bbbf3acd3a2b337eead0999673d20b9935e4d60d8e%2Fwidget%2FdNFTMinting near.org Github : https://github.com/YouJun-IWON/BOS-Contest GitHub - YouJun-IWON/BOS-Contest Contribute to ..

Presentation : https://www.canva.com/design/DAFzlnBpAHg/h1Fkw2wP2vyWb4-aOE-jzw/edit?utm_content=DAFzlnBpAHg&utm_campaign=designshare&utm_medium=link2&utm_source=sharebutton Report : https://candle-keyboard-dd4.notion.site/AAVE-eb5cad920ac5457994ca156c046e9419?pvs=4

1. Real estate can be bought and sold more efficiently and safely through tokenization of real assets rather than paper title deeds that can be lost or altered. This is because all information is recorded in a distributed ledger, so anyone can track ownership history and previous transactions to verify authenticity. 2. Currently, purchasing real estate takes anywhere from a few weeks to several ..

Product : https://www.pets-mas.com/ 메리 댕냥스마스 우리집 댕냥이로 크리스마스 카드를 만들어 보세요! www.pets-mas.com Video : https://youtu.be/mBvLnZIfWoA problems : 1. filter routing problem : => I set filtering in the layout for each page, but a loop phenomenon was discovered. 2. Libraries that worked normally on desktop did not work on mobile. 3. Depending on the mobile software version, some operations may not work. 4...

Problem : I'm using Nextjs 14 and wanted to utilize the layout folder to automatically load data when accessing the web. Why? This is fine when sending requests from client to server, but when communicating from server to server in Nextjs, the difference between http/https causes problems. Can occur while the Next.js app is establishing an SSL/TLS secure connection. Typically, this error occurs ..
https://codevoweb.com/setup-and-use-nextauth-in-nextjs-13-app-directory/ Setup and Use NextAuth.js in Next.js 13 App Directory - CodevoWeb In this tutorial, I’ll walk you through setting up authentication in your Next.js 13 app directory using NextAuth.js. It’s worth noting that while we use... codevoweb.com https://github.com/vercel/next.js/discussions/50511 Why does my NextAuthJS discord login..
upload setting rule : https://support.cloudinary.com/hc/en-us/articles/202520662-How-can-I-bulk-upload-my-images- method: https://cloudinary.com/blog/guest_post/upload-images-with-react-dropzone Upload Images with React-Dropzone This post describes how to upload images using the react-dropzone package. We’ll go through the implementation process by building a basic Next.js application that lets ..

Error : Why : While rendering your application, there was a difference between the React tree that was pre-rendered from the server and the React tree that was rendered during the first render in the browser (hydration). Solution : import { useState, useEffect } from 'react' export default function App() { const [isClient, setIsClient] = useState(false) useEffect(() => { setIsClient(true) }, [])..
When : When implementing login using prisma and nextauth. Error message : [next-auth][error][adapter_error_getUserByAccount] https://next-auth.js.org/errors#adapter_error_getuserbyaccount Invalid `prisma.account.findUnique()` invocation: prisma code : generator client { provider = "prisma-client-js" } datasource db { provider = "mysql" url = env("DATABASE_URL") // Add this relationMode = "prisma..