23 lines
372 B
GraphQL
23 lines
372 B
GraphQL
|
|
type Stats @entity {
|
|
id: Bytes!
|
|
outstandingSupply: BigInt! # uint256
|
|
activeSupply: BigInt! # uint256
|
|
}
|
|
|
|
enum PositionStatus {
|
|
Active,
|
|
Closed,
|
|
}
|
|
|
|
type Position @entity {
|
|
id: Bytes!
|
|
owner: Bytes! # address
|
|
share: BigDecimal!
|
|
# harb at start
|
|
# current harb value
|
|
creationTime: Int!
|
|
lastTaxTime: Int
|
|
taxRate: BigDecimal!
|
|
status: PositionStatus!
|
|
}
|