mirror of
https://github.com/oceanprotocol/ocean.js.git
synced 2024-11-26 20:39:05 +01:00
17 lines
307 B
TypeScript
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
|
|
}
|