interface Pool {
    adjustmentFlowRate: string;
    admin: string;
    createdAtBlockNumber: number;
    createdAtTimestamp: number;
    flowRate: string;
    id: string;
    perUnitFlowRate: string;
    perUnitSettledValue: string;
    token: string;
    totalAmountDistributedUntilUpdatedAt: string;
    totalAmountFlowedDistributedUntilUpdatedAt: string;
    totalAmountInstantlyDistributedUntilUpdatedAt: string;
    totalBuffer: string;
    totalConnectedMembers: number;
    totalConnectedUnits: string;
    totalDisconnectedMembers: number;
    totalDisconnectedUnits: string;
    totalFlowAdjustmentAmountDistributedUntilUpdatedAt: string;
    totalMembers: number;
    totalUnits: string;
    updatedAtBlockNumber: number;
    updatedAtTimestamp: number;
}

Properties

adjustmentFlowRate: string
admin: string
createdAtBlockNumber: number
createdAtTimestamp: number
flowRate: string
id: string
perUnitFlowRate: string
perUnitSettledValue: string
token: string
totalAmountDistributedUntilUpdatedAt: string
totalAmountFlowedDistributedUntilUpdatedAt: string
totalAmountInstantlyDistributedUntilUpdatedAt: string
totalBuffer: string
totalConnectedMembers: number

A connected member is any account which has more than 0 units in the pool and is connected.

totalConnectedUnits: string
totalDisconnectedMembers: number

A disconnected member is any account which has more than 0 units in the pool and is not connected.

totalDisconnectedUnits: string
totalFlowAdjustmentAmountDistributedUntilUpdatedAt: string
totalMembers: number

A member is any account which has more than 0 units in the pool.

totalUnits: string
updatedAtBlockNumber: number
updatedAtTimestamp: number

Generated using TypeDoc