File tree Expand file tree Collapse file tree 6 files changed +385
-5068
lines changed Expand file tree Collapse file tree 6 files changed +385
-5068
lines changed Original file line number Diff line number Diff line change
1
+ ### [ 9.1.0] ( https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.1.0 ) (2023-10-28)
2
+ - useelven update - add support for xAlias
3
+ - update Next.js to v14 (required min Node version: 18.7.0)
4
+ - update dependencies
5
+
1
6
### [ 9.0.3] ( https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.0.3 ) (2023-10-02)
2
7
- update useElven (bug related to guardian address and localstorage entry)
3
8
- update dependencies
Original file line number Diff line number Diff line change @@ -175,10 +175,10 @@ Compact MultiversX SDK for browsers (no build steps required)
175
175
176
176
Tools that can help you with interactions:
177
177
178
+ - [ Buildo.dev] ( https://www.buildo.dev )
178
179
- [ Buildo Begins] ( https://github.com/xdevguild/buildo-begins )
179
180
- [ Elven Tools] ( https://www.elven.tools )
180
181
181
182
### Contact
182
183
183
184
- [ julian.io] ( https://www.julian.io )
184
-
Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ export default function RootLayout({
104
104
{ 'useElven' }
105
105
</ a >
106
106
< span className = "font-thin mx-2" > | </ span >
107
+ < a href = "https://www.buildo.dev" target = "_blank" >
108
+ { 'Buildo.dev' }
109
+ </ a >
110
+ < span className = "font-thin mx-2" > | </ span >
107
111
< a
108
112
href = "https://github.com/xdevguild/buildo-begins"
109
113
target = "_blank"
Original file line number Diff line number Diff line change @@ -70,9 +70,9 @@ export const LoginComponent = memo(() => {
70
70
< Button
71
71
className = "w-full select-none h-auto"
72
72
variant = "outline"
73
- onClick = { handleLogin ( LoginMethodsEnum . wallet ) }
73
+ onClick = { handleLogin ( LoginMethodsEnum . walletconnect ) }
74
74
>
75
- MultiversX Web Wallet
75
+ xPortal Mobile App
76
76
</ Button >
77
77
< Button
78
78
className = "w-full select-none h-auto"
@@ -84,9 +84,9 @@ export const LoginComponent = memo(() => {
84
84
< Button
85
85
className = "w-full select-none h-auto"
86
86
variant = "outline"
87
- onClick = { handleLogin ( LoginMethodsEnum . walletconnect ) }
87
+ onClick = { handleLogin ( LoginMethodsEnum . wallet ) }
88
88
>
89
- xPortal Mobile App
89
+ MultiversX Web Wallet
90
90
</ Button >
91
91
< Button
92
92
className = "w-full select-none h-auto"
@@ -95,6 +95,13 @@ export const LoginComponent = memo(() => {
95
95
>
96
96
Ledger
97
97
</ Button >
98
+ < Button
99
+ className = "w-full select-none h-auto"
100
+ variant = "outline"
101
+ onClick = { handleLogin ( LoginMethodsEnum . xalias ) }
102
+ >
103
+ xAlias
104
+ </ Button >
98
105
</ div >
99
106
) }
100
107
You can’t perform that action at this time.
0 commit comments