1
0
mirror of https://github.com/oceanprotocol/react.git synced 2024-06-29 00:57:49 +02:00

fix interfaces

Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro>
This commit is contained in:
mihaisc 2020-10-23 14:19:08 +03:00
parent 556a2e97fe
commit fbf28f304c
No known key found for this signature in database
GPG Key ID: 4FB0C2329B4C6E29
2 changed files with 4 additions and 2 deletions

View File

@ -13,7 +13,8 @@ interface UseCompute {
dataTokenAddress: string, dataTokenAddress: string,
algorithmRawCode: string, algorithmRawCode: string,
computeContainer: ComputeValue, computeContainer: ComputeValue,
marketFeeAddress?: string marketFeeAddress?: string,
orderId?: string
) => Promise<ComputeJob | void> ) => Promise<ComputeJob | void>
computeStep?: number computeStep?: number
computeStepText?: string computeStepText?: string

View File

@ -8,7 +8,8 @@ interface UseConsume {
did: DID | string, did: DID | string,
dataTokenAddress: string, dataTokenAddress: string,
serviceType: ServiceType, serviceType: ServiceType,
marketFeeAddress: string marketFeeAddress: string,
orderId?: string
) => Promise<void> ) => Promise<void>
consumeStep?: number consumeStep?: number
consumeStepText?: string consumeStepText?: string