| 8 | import * as util from "./util"; |
| 9 | |
| 10 | interface ExtendedCommit { |
| 11 | commitEventIndex; |
| 12 | blockNumber; |
| 13 | transactionHash; |
| 14 | commit; |
| 15 | assetCid; |
| 16 | assetTree; |
| 17 | author; |
| 18 | authorWalletAddress; |
| 19 | committer; |
| 20 | committerWalletAddress; |
| 21 | provider; |
| 22 | license; |
| 23 | action; |
| 24 | integrity; |
| 25 | assetCreatedIsoTime: string; |
| 26 | commitCreatedIsoTime: string; |
| 27 | blockchain: string; |
| 28 | } |
| 29 | |
| 30 | async function extend(commitEventIndex, commitSummary, blockchainName) { |
| 31 | const blockNumber = commitSummary.blockNumber ; |
nothing calls this directly
no outgoing calls
no test coverage detected