@@ -31,18 +31,18 @@ export class EventLog extends Log {
31
31
}
32
32
33
33
export class ContractTransactionReceipt extends TransactionReceipt {
34
- readonly #interface : Interface ;
34
+ readonly #iface : Interface ;
35
35
36
36
constructor ( iface : Interface , provider : Provider , tx : TransactionReceipt ) {
37
37
super ( tx , provider ) ;
38
- this . #interface = iface ;
38
+ this . #iface = iface ;
39
39
}
40
40
41
41
get logs ( ) : Array < EventLog | Log > {
42
42
return super . logs . map ( ( log ) => {
43
- const fragment = log . topics . length ? this . #interface . getEvent ( log . topics [ 0 ] ) : null ;
43
+ const fragment = log . topics . length ? this . #iface . getEvent ( log . topics [ 0 ] ) : null ;
44
44
if ( fragment ) {
45
- return new EventLog ( log , this . #interface , fragment )
45
+ return new EventLog ( log , this . #iface , fragment )
46
46
} else {
47
47
return log ;
48
48
}
@@ -52,17 +52,17 @@ export class ContractTransactionReceipt extends TransactionReceipt {
52
52
}
53
53
54
54
export class ContractTransactionResponse extends TransactionResponse {
55
- readonly #interface : Interface ;
55
+ readonly #iface : Interface ;
56
56
57
57
constructor ( iface : Interface , provider : Provider , tx : TransactionResponse ) {
58
58
super ( tx , provider ) ;
59
- this . #interface = iface ;
59
+ this . #iface = iface ;
60
60
}
61
61
62
62
async wait ( confirms ?: number ) : Promise < null | ContractTransactionReceipt > {
63
63
const receipt = await super . wait ( ) ;
64
64
if ( receipt == null ) { return null ; }
65
- return new ContractTransactionReceipt ( this . #interface , this . provider , receipt ) ;
65
+ return new ContractTransactionReceipt ( this . #iface , this . provider , receipt ) ;
66
66
}
67
67
}
68
68
0 commit comments