File tree Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Expand file tree Collapse file tree 4 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ <h4 class="text--neutral-white">
43
43
class ="input--textarea input--seed "
44
44
rows ="2 "
45
45
placeholder ="Enter your DeSo seed only! "
46
+ autocapitalize ="none "
46
47
> </ textarea >
47
48
< div class ="margin-top--small text--right ">
48
49
< div
@@ -74,6 +75,7 @@ <h4 class="text--neutral-white">
74
75
class ="input--textarea "
75
76
rows ="2 "
76
77
placeholder ="Enter your passphrase "
78
+ autocapitalize ="none "
77
79
> </ textarea >
78
80
</ div >
79
81
@@ -88,6 +90,7 @@ <h4 class="text--neutral-white">
88
90
class ="input--textarea "
89
91
rows ="2 "
90
92
placeholder ="Enter your seed hex "
93
+ autocapitalize ="none "
91
94
> </ textarea >
92
95
</ div >
93
96
< button
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ export class WalletProvider {
180
180
const provider = await EthereumProvider . init ( {
181
181
projectId : 'bea679efaf1bb0481c4974e65c510200' ,
182
182
chains : [ 1 /* Mainnet */ ] ,
183
- optionalChains : [ 5 /* Goerli */ ] ,
183
+ optionalChains : [ 11155111 /* Sepolia */ ] ,
184
184
optionalMethods : [ 'eth_requestAccounts' ] ,
185
185
metadata : {
186
186
description :
Original file line number Diff line number Diff line change @@ -225,6 +225,7 @@ <h3 class="text--neutral-white">Safely store your DeSo seed phrase</h3>
225
225
(ngModelChange) ="checkMnemonic() "
226
226
class ="input--textarea input--seed "
227
227
rows ="2 "
228
+ autocapitalize ="none "
228
229
> </ textarea >
229
230
</ div >
230
231
@@ -239,6 +240,7 @@ <h3 class="text--neutral-white">Safely store your DeSo seed phrase</h3>
239
240
(ngModelChange) ="normalizeExtraText() "
240
241
class ="input--textarea "
241
242
rows ="2 "
243
+ autocapitalize ="none "
242
244
> </ textarea >
243
245
</ div >
244
246
@@ -261,6 +263,7 @@ <h3 class="text--neutral-white">Safely store your DeSo seed phrase</h3>
261
263
(ngModelChange) ="checkEntropyHex() "
262
264
class ="input--textarea "
263
265
rows ="2 "
266
+ autocapitalize ="none "
264
267
> </ textarea >
265
268
</ div >
266
269
@@ -326,6 +329,7 @@ <h3 class="text--neutral-white">Verify your DeSo seed phrase</h3>
326
329
class ="input--textarea input--seed "
327
330
rows ="4 "
328
331
placeholder ="Enter your DeSo seed phrase "
332
+ autocapitalize ="none "
329
333
> </ textarea >
330
334
</ div >
331
335
< div
@@ -346,6 +350,7 @@ <h3 class="text--neutral-white">Verify your DeSo seed phrase</h3>
346
350
class ="input--textarea input-seed "
347
351
rows ="4 "
348
352
placeholder ="Enter your passphrase "
353
+ autocapitalize ="none "
349
354
> </ textarea >
350
355
</ div >
351
356
</ div >
Original file line number Diff line number Diff line change @@ -796,3 +796,8 @@ export class TransactionV0 extends BinaryRecord {
796
796
@Transcode ( VarBuffer )
797
797
signature : Buffer | null = null ;
798
798
}
799
+
800
+ export class TransactionMetdataAtomicWrapper extends TransactionMetadata {
801
+ @Transcode ( ArrayOf ( Transaction ) )
802
+ metadata : Transaction [ ] = [ ] ;
803
+ }
You can’t perform that action at this time.
0 commit comments