mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
26 lines
559 B
TypeScript
26 lines
559 B
TypeScript
export interface Provider {
|
|
type: string
|
|
description: string
|
|
environment: {
|
|
cluster: {
|
|
type: string
|
|
url: string
|
|
}
|
|
supportedContainers: {
|
|
image: string
|
|
tag: string
|
|
checksum: string
|
|
}[]
|
|
supportedServers: {
|
|
serverId: string
|
|
serverType: string
|
|
price: string
|
|
cpu: string
|
|
gpu: string
|
|
memory: string
|
|
disk: string
|
|
maxExecutionTime: number
|
|
}[]
|
|
}
|
|
}
|