@@ -750,15 +750,15 @@ export const _createNagaLitClient = async (
750750 account : ExpectedAccountOrWalletClient ;
751751 } ) => Promise < GenericTxRes < LitTxRes < PKPData > , PKPData > > ,
752752 mintWithAuth : ( async (
753- params : Parameters < ( typeof networkModule ) [ 'chainApi' ] [ 'mintWithAuth' ] > [ 0 ]
753+ params : Parameters < typeof networkModule [ 'chainApi' ] [ 'mintWithAuth' ] > [ 0 ]
754754 ) => {
755755 _logger . info ( `mintWithAuth called` ) ;
756756 const result = await networkModule . chainApi . mintWithAuth ( params ) ;
757757 _logger . info ( { result } , `mintWithAuth result` ) ;
758758 return result ;
759759 } ) as (
760- params : Parameters < ( typeof networkModule ) [ 'chainApi' ] [ 'mintWithAuth' ] > [ 0 ]
761- ) => ReturnType < ( typeof networkModule ) [ 'chainApi' ] [ 'mintWithAuth' ] > ,
760+ params : Parameters < typeof networkModule [ 'chainApi' ] [ 'mintWithAuth' ] > [ 0 ]
761+ ) => ReturnType < typeof networkModule [ 'chainApi' ] [ 'mintWithAuth' ] > ,
762762 mintWithCustomAuth : async ( params : MintWithCustomAuthRequest ) => {
763763 const validatedParams = MintWithCustomAuthSchema . parse ( params ) ;
764764
@@ -882,7 +882,7 @@ export const _createNagaLitClient = async (
882882 } ,
883883 authService : {
884884 mintWithAuth : async (
885- params : Parameters < ( typeof networkModule ) [ 'authService' ] [ 'pkpMint' ] > [ 0 ]
885+ params : Parameters < typeof networkModule [ 'authService' ] [ 'pkpMint' ] > [ 0 ]
886886 ) => {
887887 _logger . info ( `authService.mintWithAuth called` ) ;
888888 const result = await networkModule . authService . pkpMint ( params ) ;
@@ -891,7 +891,7 @@ export const _createNagaLitClient = async (
891891 } ,
892892 registerPayer : async (
893893 params : Parameters <
894- ( typeof networkModule ) [ 'authService' ] [ 'registerPayer' ]
894+ typeof networkModule [ 'authService' ] [ 'registerPayer' ]
895895 > [ 0 ]
896896 ) => {
897897 _logger . info ( `authService.registerPayer called` ) ;
@@ -901,7 +901,7 @@ export const _createNagaLitClient = async (
901901 } ,
902902 delegateUsers : async (
903903 params : Parameters <
904- ( typeof networkModule ) [ 'authService' ] [ 'delegateUsers' ]
904+ typeof networkModule [ 'authService' ] [ 'delegateUsers' ]
905905 > [ 0 ]
906906 ) => {
907907 _logger . info ( `authService.delegateUsers called` ) ;
0 commit comments