minor changes

Signed-off-by: mihaisc <mihai.scarlat@smartcontrol.ro>
This commit is contained in:
mihaisc 2021-10-27 13:06:30 +03:00
parent 4ac408de51
commit 82fd689144
No known key found for this signature in database
GPG Key ID: 4FB0C2329B4C6E29
1 changed files with 7 additions and 6 deletions

View File

@ -89,7 +89,7 @@ type Pool @entity {
spotPrice: BigDecimal!
consumePrice: BigDecimal! # TODO: still need?
// what is the point of the counts, we never used them => remove
# what is the point of the counts, we never used them => remove
joinCount: BigInt! # liquidity has been added
exitCount: BigInt! # liquidity has been removed
swapCount: BigInt!
@ -192,6 +192,7 @@ type FixedRateExchange @entity {
baseToken: Token!
rate: BigDecimal!
active: Boolean!
suppy: Int!
updates: [FixedRateExchangeUpdate!] @derivedFrom(field: "exchangeId")
swaps: [FixedRateExchangeSwap!] @derivedFrom(field: "exchangeId")
}
@ -220,13 +221,13 @@ type FixedRateExchangeSwap @entity {
}
type Dispenser @entity {
id: ID! # dispenser datatoken
active: Boolean!
id: ID! # it's the datatoken address
active: Boolean!
owner: User!
minterApproved: Boolean!
isTrueMinter: Boolean!
maxTokens: BigDecimal!
maxBalance: BigDecimal!
maxTokens: BigDecimal! # max tokens that can be dispensed
maxBalance: BigDecimal! # max balance of requester. If the balance is higher, the dispense is rejected
balance: BigDecimal!
datatoken: Datatoken!
dispenses: [DispenserTransaction!] @derivedFrom(field: "dispenserId")
@ -268,7 +269,7 @@ type PoolSnapshot @entity {
}
// shouldn't we move this to aquarius?
# shouldn't we move this to aquarius?
type MetadataUpdate @entity {
id: ID! # update tx + datatokenAddress
datatokenId: Datatoken!