@@ -20,7 +20,6 @@ import type {
2020 __experimental_UserVerificationModalProps ,
2121 __experimental_UserVerificationProps ,
2222 ActiveSessionResource ,
23- AuthenticateWithCoinbaseParams ,
2423 AuthenticateWithCoinbaseWalletParams ,
2524 AuthenticateWithGoogleOneTapParams ,
2625 AuthenticateWithMetamaskParams ,
@@ -75,7 +74,6 @@ import {
7574 createPageLifecycle ,
7675 disabledOrganizationsFeature ,
7776 errorThrower ,
78- generateSignatureWithCoinbase ,
7977 generateSignatureWithCoinbaseWallet ,
8078 generateSignatureWithMetamask ,
8179 getClerkQueryParam ,
@@ -1406,10 +1404,6 @@ export class Clerk implements ClerkInterface {
14061404 await this . authenticateWithWeb3 ( { ...props , strategy : 'web3_metamask_signature' } ) ;
14071405 } ;
14081406
1409- public authenticateWithCoinbase = async ( props : AuthenticateWithCoinbaseParams = { } ) : Promise < void > => {
1410- await this . authenticateWithWeb3 ( { ...props , strategy : 'web3_coinbase_signature' } ) ;
1411- } ;
1412-
14131407 public authenticateWithCoinbaseWallet = async ( props : AuthenticateWithCoinbaseWalletParams = { } ) : Promise < void > => {
14141408 await this . authenticateWithWeb3 ( { ...props , strategy : 'web3_coinbase_wallet_signature' } ) ;
14151409 } ;
@@ -1427,11 +1421,8 @@ export class Clerk implements ClerkInterface {
14271421 const provider = strategy . replace ( 'web3_' , '' ) . replace ( '_signature' , '' ) as Web3Provider ;
14281422 const identifier = await getWeb3Identifier ( { provider } ) ;
14291423 const generateSignature =
1430- provider === 'metamask'
1431- ? generateSignatureWithMetamask
1432- : provider === 'coinbase'
1433- ? generateSignatureWithCoinbase
1434- : generateSignatureWithCoinbaseWallet ;
1424+ provider === 'metamask' ? generateSignatureWithMetamask : generateSignatureWithCoinbaseWallet ;
1425+
14351426 const navigate = ( to : string ) =>
14361427 customNavigate && typeof customNavigate === 'function' ? customNavigate ( to ) : this . navigate ( to ) ;
14371428
0 commit comments