Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ lcov.info

# Config
.env
.env.local
*.env.local

# IDE
.vscode
Expand Down
8 changes: 4 additions & 4 deletions week-05/dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ const WALLETCONNECT_PROJECT_ID = 'your-actual-project-id';

### 4. 추가 과제 (선택)

- [ ] 네트워크 전환 버튼 구현
- [ ] 잔액 변화 감지 및 표시
- [ ] 트랜잭션 히스토리 표시
- [ ] 반응형 디자인 적용
- [x] 네트워크 전환 버튼 구현
- [x] 잔액 변화 감지 및 표시
- [x] 트랜잭션 히스토리 표시
- [x] 반응형 디자인 적용

## 참고 자료

Expand Down
15 changes: 15 additions & 0 deletions week-05/dev/my-dapp/.next/app-build-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"pages": {
"/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/chunks/app/page.js"
],
"/layout": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/css/app/layout.css",
"static/chunks/app/layout.js"
]
}
}
19 changes: 19 additions & 0 deletions week-05/dev/my-dapp/.next/build-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"polyfillFiles": [
"static/chunks/polyfills.js"
],
"devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [
"static/development/_buildManifest.js",
"static/development/_ssgManifest.js"
],
"rootMainFiles": [
"static/chunks/webpack.js",
"static/chunks/main-app.js"
],
"pages": {
"/_app": []
},
"ampFirstPages": []
}
1 change: 1 addition & 0 deletions week-05/dev/my-dapp/.next/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"type": "commonjs"}
1,012 changes: 1,012 additions & 0 deletions week-05/dev/my-dapp/.next/react-loadable-manifest.json

Large diffs are not rendered by default.

54 changes: 54 additions & 0 deletions week-05/dev/my-dapp/.next/server/_d272-_3dc1-_d04b-_bf50.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* ATTENTION: An "eval-source-map" devtool has been used.
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
exports.id = "_d272-_3dc1-_d04b-_bf50";
exports.ids = ["_d272-_3dc1-_d04b-_bf50"];
exports.modules = {

/***/ "?d272":
/*!********************************!*\
!*** supports-color (ignored) ***!
\********************************/
/***/ (() => {

/* (ignored) */

/***/ }),

/***/ "?3dc1":
/*!********************************!*\
!*** supports-color (ignored) ***!
\********************************/
/***/ (() => {

/* (ignored) */

/***/ }),

/***/ "?d04b":
/*!********************************!*\
!*** supports-color (ignored) ***!
\********************************/
/***/ (() => {

/* (ignored) */

/***/ }),

/***/ "?bf50":
/*!********************************!*\
!*** supports-color (ignored) ***!
\********************************/
/***/ (() => {

/* (ignored) */

/***/ })

};
;
24 changes: 24 additions & 0 deletions week-05/dev/my-dapp/.next/server/_d272.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
* ATTENTION: An "eval-source-map" devtool has been used.
* This devtool is neither made for production nor for readable output files.
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
* or disable the default devtool with "devtool: false".
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
*/
exports.id = "_d272";
exports.ids = ["_d272"];
exports.modules = {

/***/ "?d272":
/*!********************************!*\
!*** supports-color (ignored) ***!
\********************************/
/***/ (() => {

/* (ignored) */

/***/ })

};
;
3 changes: 3 additions & 0 deletions week-05/dev/my-dapp/.next/server/app-paths-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"/page": "app/page.js"
}
Loading