1
0
mirror of https://github.com/oceanprotocol/react.git synced 2024-06-26 03:06:48 +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,
algorithmRawCode: string,
computeContainer: ComputeValue,
marketFeeAddress?: string
marketFeeAddress?: string,
orderId?: string
) => Promise<ComputeJob | void>
computeStep?: number
computeStepText?: string

View File

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