@@ -492,7 +492,7 @@ export class AbstractProvider implements Provider {
492
492
}
493
493
494
494
_wrapTransactionResponse ( tx : TransactionResponseParams , network : Network ) : TransactionResponse {
495
- return new TransactionResponse ( tx , this ) ;
495
+ return new TransactionResponse ( formatTransactionResponse ( tx ) , this ) ;
496
496
}
497
497
498
498
_detectNetwork ( ) : Promise < Network > {
@@ -897,7 +897,7 @@ export class AbstractProvider implements Provider {
897
897
} ) ;
898
898
if ( params == null ) { return null ; }
899
899
900
- return this . _wrapBlock ( formatBlock ( params ) , network ) ;
900
+ return this . _wrapBlock ( params , network ) ;
901
901
}
902
902
903
903
async getTransaction ( hash : string ) : Promise < null | TransactionResponse > {
@@ -907,7 +907,7 @@ export class AbstractProvider implements Provider {
907
907
} ) ;
908
908
if ( params == null ) { return null ; }
909
909
910
- return this . _wrapTransactionResponse ( formatTransactionResponse ( params ) , network ) ;
910
+ return this . _wrapTransactionResponse ( params , network ) ;
911
911
}
912
912
913
913
async getTransactionReceipt ( hash : string ) : Promise < null | TransactionReceipt > {
@@ -925,7 +925,7 @@ export class AbstractProvider implements Provider {
925
925
params . effectiveGasPrice = tx . gasPrice ;
926
926
}
927
927
928
- return this . _wrapTransactionReceipt ( formatTransactionReceipt ( params ) , network ) ;
928
+ return this . _wrapTransactionReceipt ( params , network ) ;
929
929
}
930
930
931
931
async getTransactionResult ( hash : string ) : Promise < null | string > {
@@ -947,7 +947,7 @@ export class AbstractProvider implements Provider {
947
947
params : this . #perform< Array < LogParams > > ( { method : "getLogs" , filter } )
948
948
} ) ;
949
949
950
- return params . map ( ( p ) => this . _wrapLog ( formatLog ( p ) , network ) ) ;
950
+ return params . map ( ( p ) => this . _wrapLog ( p , network ) ) ;
951
951
}
952
952
953
953
// ENS
0 commit comments