12345678910111213141516171819202122232425262728293031323334 |
- export type MemberJson = {
- memberId: string
- rootAccount: string
- controllerAccount: string
- handle: string
- about?: string
- avatarUri?: string
- registeredAtTime: number
- }
- export type StorageSystemJson = {
- id: string
- blacklist: string[]
- storageBucketsPerBagLimit: number
- distributionBucketsPerBagLimit: number
- uploadingBlocked: boolean
- dataObjectFeePerMb: number | string
- storageBucketMaxObjectsCountLimit: number | string
- storageBucketMaxObjectsSizeLimit: number | string
- }
- export type WorkerJson = {
- workerId: string
- metadata?: string
- createdAt: number
- }
- export type WorkingGroupJson = {
- workers: WorkerJson[]
- }
- export type WorkingGroupsJson = {
- [group in 'GATEWAY' | 'STORAGE']?: WorkingGroupJson
- }
|