File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
packages/blockchain-sdk-solana/src/sdk Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ import { DialectWalletAdapterSolanaTxTokenSigner } from '../auth/tx/solana-tx-to
1515import { SolanaSignMessageV2AuthenticationFacadeFactory } from '../auth/v2/sign-message/solana-sign-message-v2-authentication-facade-factory' ;
1616import { DIALECT_BLOCKCHAIN_SDK_TYPE_SOLANA } from './constants' ;
1717import { SolanaSignTxV2AuthenticationFacadeFactory } from '../auth/v2/sign-tx/solana-sign-tx-v2-authentication-facade-factory' ;
18+ import { DialectWalletAdapterSolanaTxSigner } from '../auth/v2/sign-tx/solana-tx-signer' ;
1819
1920export interface SolanaConfigProps {
2021 wallet : DialectSolanaWalletAdapter ;
@@ -111,7 +112,7 @@ Solana settings:
111112 }
112113 if ( solanaConfig . wallet . canSignTransaction ( ) ) {
113114 return new SolanaSignTxV2AuthenticationFacadeFactory (
114- new DialectWalletAdapterSolanaTxTokenSigner ( solanaConfig . wallet ) ,
115+ new DialectWalletAdapterSolanaTxSigner ( solanaConfig . wallet ) ,
115116 config . dialectCloud . v2Url ,
116117 ) ;
117118 }
You can’t perform that action at this time.
0 commit comments