" <pool underlying asset address> "
createdAtTimestamp: BigInt!
" block pool was created at "
createdAtBlockNumber: BigInt!
" address of bath token creator "
bathTokenCreator: String!
" pool underlying balance (amount in pool and on books) "
underlyingBalance: BigInt!
" amount of pool assets outstanding on the orderbook "
outstandingAmount: BigInt!
" shares outstanding (BathTokens) "
" total value of pool deposits "
" total value of pool withdraws "
" BathToken Price: total suppply / underlying balance "
" total earned from market making activity "
" daily snapshots of pool data "
poolDayData: [PoolDayData!]! @derivedFrom(field: "pool")
" hourly snapshots of pool data "
poolHourData: [PoolHourData!]! @derivedFrom(field: "pool")
deposits: [Deposit!]! @derivedFrom(field: "pool")
withdraws: [Withdraw!]! @derivedFrom(field: "pool")
PoolBuffers: [PoolBuffer!]! @derivedFrom(field: "pool")