You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/core/auth-js/src/lib/types.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -681,10 +681,10 @@ export type EthereumWeb3Credentials =
681
681
|{
682
682
chain: 'ethereum'
683
683
684
-
/** Wallet interface to use. If not specified will default to `window.solana`. */
684
+
/** Wallet interface to use. If not specified will default to `window.ethereum`. */
685
685
wallet?: EthereumWallet
686
686
687
-
/** Optional statement to include in the Sign in with Solana message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!** */
687
+
/** Optional statement to include in the Sign in with Ethereum message. Must not include new line characters. Most wallets like Phantom **require specifying a statement!** */
688
688
statement?: string
689
689
690
690
options?: {
@@ -705,7 +705,7 @@ export type EthereumWeb3Credentials =
705
705
/** Sign in with Ethereum compatible message. Must include `Issued At`, `URI` and `Version`. */
706
706
message: string
707
707
708
-
/** Ed25519 signature of the message. */
708
+
/** Ethereum curve (secp256k1) signature of the message. */
0 commit comments