1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

add inputDID & algoDID (#735)

This commit is contained in:
Alex Coseru 2021-04-13 21:25:15 +03:00 committed by GitHub
parent b68cc55149
commit 51c241eed4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ import { MetadataAlgorithm } from '../../ddo/interfaces/MetadataAlgorithm'
export interface ComputeJob {
owner: string
did: string
did?: string
jobId: string
dateCreated: string
dateFinished: string
@ -13,6 +13,8 @@ export interface ComputeJob {
algorithmLogUrl: string
resultsUrl: string[]
resultsDid?: DID
inputDID?: string[]
algoDID?: string
}
export interface ComputeOutput {