1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00
ocean.js/src/@types/Provider.ts
2022-01-17 15:05:05 +02:00

17 lines
307 B
TypeScript

export interface ProviderFees {
providerFeeAddress: string
providerFeeToken: string
providerFeeAmount: string
providerData: string
v: string
r: string
s: string
}
export interface ProviderInitialize {
datatoken: string
nonce: string
computeAddress: string
providerFee: ProviderFees
}