(address, blockTag = "latest")
| 66 | } |
| 67 | |
| 68 | async getTransactionCount(address, blockTag = "latest") { |
| 69 | return await this.provider.getTransactionCount(address, blockTag); |
| 70 | } |
| 71 | |
| 72 | async getTransaction(hash) { |
| 73 | return await this.provider.getTransaction(hash); |
nothing calls this directly
no outgoing calls
no test coverage detected