File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
packages/walletconnect/src/utils
wallets/shell-extension/src/extension Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -32,9 +32,9 @@ export const CoreUtil = {
32
32
return `${ plainAppUrl } /wc?uri=${ encodedWcUrl } ` ;
33
33
} ,
34
34
35
- async wait ( miliseconds : number ) {
35
+ async wait ( milliseconds : number ) {
36
36
return new Promise ( ( resolve ) => {
37
- setTimeout ( resolve , miliseconds ) ;
37
+ setTimeout ( resolve , milliseconds ) ;
38
38
} ) ;
39
39
} ,
40
40
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ export interface Shell {
38
38
/**
39
39
* mode means that how Keplr is connected.
40
40
* If the connected Keplr is browser's extension, the mode should be "extension".
41
- * If the connected Keplr is on the mobile app with the embeded web browser, the mode should be "mobile-web".
41
+ * If the connected Keplr is on the mobile app with the embedded web browser, the mode should be "mobile-web".
42
42
*/
43
43
readonly mode : ShellMode ;
44
44
defaultOptions : ShellIntereactionOptions ;
@@ -138,9 +138,9 @@ export interface Shell {
138
138
types : Record <
139
139
string ,
140
140
| {
141
- name : string ;
142
- type : string ;
143
- } [ ]
141
+ name : string ;
142
+ type : string ;
143
+ } [ ]
144
144
| undefined
145
145
> ;
146
146
domain : Record < string , any > ;
You can’t perform that action at this time.
0 commit comments