Skip to content

Commit b4d51fd

Browse files
interface fixes
1 parent 142934f commit b4d51fd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/types/interface.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ export interface IWeb3Auth {
6060
}
6161

6262
export type WalletLoginParams = {
63-
loginId?: string;
64-
sessionId?: string;
63+
loginId: string;
64+
sessionId: string;
6565
request?: {
6666
method: string;
6767
params: unknown[];
@@ -75,14 +75,14 @@ export enum ChainNamespace {
7575
}
7676

7777
export type ChainConfig = {
78-
chainNamespace?: ChainNamespace;
79-
decimals: number;
78+
chainNamespace: ChainNamespace;
79+
decimals?: number;
8080
blockExplorerUrl?: String;
8181
chainId: String;
8282
displayName?: String;
8383
logo?: String;
8484
rpcTarget: String;
85-
ticker: String;
85+
ticker?: String;
8686
tickerName?: String;
8787
};
8888

0 commit comments

Comments
 (0)