@@ -20,7 +20,6 @@ import type {
20
20
__experimental_UserVerificationModalProps ,
21
21
__experimental_UserVerificationProps ,
22
22
ActiveSessionResource ,
23
- AuthenticateWithCoinbaseParams ,
24
23
AuthenticateWithCoinbaseWalletParams ,
25
24
AuthenticateWithGoogleOneTapParams ,
26
25
AuthenticateWithMetamaskParams ,
@@ -75,7 +74,6 @@ import {
75
74
createPageLifecycle ,
76
75
disabledOrganizationsFeature ,
77
76
errorThrower ,
78
- generateSignatureWithCoinbase ,
79
77
generateSignatureWithCoinbaseWallet ,
80
78
generateSignatureWithMetamask ,
81
79
getClerkQueryParam ,
@@ -1406,10 +1404,6 @@ export class Clerk implements ClerkInterface {
1406
1404
await this . authenticateWithWeb3 ( { ...props , strategy : 'web3_metamask_signature' } ) ;
1407
1405
} ;
1408
1406
1409
- public authenticateWithCoinbase = async ( props : AuthenticateWithCoinbaseParams = { } ) : Promise < void > => {
1410
- await this . authenticateWithWeb3 ( { ...props , strategy : 'web3_coinbase_signature' } ) ;
1411
- } ;
1412
-
1413
1407
public authenticateWithCoinbaseWallet = async ( props : AuthenticateWithCoinbaseWalletParams = { } ) : Promise < void > => {
1414
1408
await this . authenticateWithWeb3 ( { ...props , strategy : 'web3_coinbase_wallet_signature' } ) ;
1415
1409
} ;
@@ -1427,11 +1421,8 @@ export class Clerk implements ClerkInterface {
1427
1421
const provider = strategy . replace ( 'web3_' , '' ) . replace ( '_signature' , '' ) as Web3Provider ;
1428
1422
const identifier = await getWeb3Identifier ( { provider } ) ;
1429
1423
const generateSignature =
1430
- provider === 'metamask'
1431
- ? generateSignatureWithMetamask
1432
- : provider === 'coinbase'
1433
- ? generateSignatureWithCoinbase
1434
- : generateSignatureWithCoinbaseWallet ;
1424
+ provider === 'metamask' ? generateSignatureWithMetamask : generateSignatureWithCoinbaseWallet ;
1425
+
1435
1426
const navigate = ( to : string ) =>
1436
1427
customNavigate && typeof customNavigate === 'function' ? customNavigate ( to ) : this . navigate ( to ) ;
1437
1428
0 commit comments