ocean-subgraph/schema.graphql

325 lines
10 KiB
GraphQL
Raw Normal View History

type PoolFactory @entity {
id: ID!
2021-09-10 12:49:37 +02:00
totalValueLocked: [TokenValue] # total value locked represented in the base token
totalLiquidity: [TokenValue] # total liquidity for each base token
totalSwapVolume: [TokenValue] # total swap volume for each base token
totalSwapFee: [TokenValue] # All the swap fee in Ocean
2021-09-02 11:08:47 +02:00
poolCount: Int! # Number of pools
finalizedPoolCount: Int! # Number of finalized pools
orderCount: BigInt # Number of total consumes
totalOrderVolume: BigDecimal # probably remove due to inconsistencies and imposibility to calculate
pools: [Pool!] @derivedFrom(field: "factoryID")
}
2021-09-02 11:08:47 +02:00
type Global @entity {
id: ID!
2021-09-02 11:08:47 +02:00
totalValueLocked: [TokenValuePair] # total value locked represented in the base token
totalLiquidity: [TokenValuePair] # total liquidity for each base token
totalSwapVolume: [TokenValuePair] # total swap volume for each base token. pools and fre
totalOrderVolume: BigDecimal
2021-09-02 11:08:47 +02:00
orderCount: BigInt # Number of total consumes, pools + fre
poolCount: Int! # Number of pools for all factories
finalizedPoolCount: Int! # Number of finalized pools for all factories
}
2021-09-10 12:49:37 +02:00
type TokenValue @entity {
2021-09-02 11:08:47 +02:00
token : Token!
value : BigDecimal!
}
type Token @entity {
id: ID! #
symbol: String #
name: String #
decimals: Int! #
address: String! #
cap: BigDecimal! #
supply: BigDecimal! #
isDatatoken: Boolean! #
factory: DatatokenFactory #
2021-09-02 16:57:14 +02:00
creator: String # TODO:
publisher: String # TODO:
minter: String # TODO:
editor: String # TODO:
2021-09-02 11:08:47 +02:00
holderCount: BigInt # Number of addresses holding a balance of datatoken
orderCount: BigInt # Number of orders executed for this datatoken
createTime: Int # Block time datatoken was created
tx: Bytes # Datatoken creation transaction id
block: Int # Block number when it was created
}
type Pool @entity {
id: ID! # Pool address
2021-09-02 16:57:14 +02:00
poolFactory: PoolFactory! # Pool factory
controller: Bytes! # Controller address
2021-09-02 16:57:14 +02:00
isPublicSwap: Boolean! # TODO : what is this?
isFinalized: Boolean! # only finalized pools are relevant to us
2021-09-02 11:08:47 +02:00
symbol: String # Pool token symbol
name: String # Pool token name
cap: BigInt # Maximum supply if any
2021-09-02 16:57:14 +02:00
isActive: Boolean! #
swapFee: BigDecimal! # Swap Fees
2021-09-02 16:57:14 +02:00
totalWeight: BigDecimal! # TODO: What is this?
totalShares: BigDecimal! # Total pool token shares
2021-09-02 11:08:47 +02:00
totalSwapVolume: BigDecimal! # Total swap volume in main token
2021-09-02 16:57:14 +02:00
totalSwapFee: BigDecimal! # TODO: is this correct ? Total swap fee in main token
2021-09-02 16:57:14 +02:00
totalValueLocked: BigDecimal! # value locked in pool expressed in main token (captures both Ocean and Datatoken)
2021-09-02 11:08:47 +02:00
spotPrice: BigDecimal!
2021-09-02 16:57:14 +02:00
consumePrice: BigDecimal! # TODO: still need?
2021-09-02 11:08:47 +02:00
// 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!
transactionCount: BigInt! # Number of transactions in this pool involving liquidity changes
2021-09-02 11:08:47 +02:00
// remove
datatokenAddress: String!
2021-09-02 11:08:47 +02:00
createTime: Int! # Block time pool was created
tx: Bytes # Pool creation transaction id
2021-09-02 11:08:47 +02:00
block
tokens: [PoolToken!] @derivedFrom(field: "poolId")
shares: [PoolShare!] @derivedFrom(field: "poolId")
2021-09-10 12:49:37 +02:00
transactions: [PoolTransaction!] @derivedFrom(field: "pool")
}
2021-09-02 11:08:47 +02:00
//PoolToken - all good as it is
type PoolToken @entity {
id: ID! # poolId + token address
2021-09-08 13:34:33 +02:00
pool: Pool! #
isDatatoken: Boolean! # if the token is a datatoken , not sure if this makes sense since it is duplicate information found on token
token: Token!
balance: BigDecimal! # balance of the token in this pool
denormWeight: BigDecimal!
symbol: String # should we keep this, it is found on token?
name: String # should we keep this, it is found on token?
decimals: Int # should we keep this, it is found on token?
}
type PoolShare @entity {
2021-09-08 13:34:33 +02:00
id: ID! # poolId + userAddress
user: User!
pool: Pool!
balance: BigDecimal!
}
2021-09-02 11:08:47 +02:00
// Will be replaced with a generic PoolTokenValue WIP
2021-09-10 12:49:37 +02:00
type PoolTransaction @entity {
id: ID! # pool tx
pool: Pool # Pool related to this tx
user: User # User that initiates the swap
2021-09-10 12:49:37 +02:00
sharesTransferAmount: BigDecimal! # Number of shares transfered
sharesBalance: BigDecimal! # TODO: what is this?
2021-09-02 11:08:47 +02:00
tx: Bytes!
event: String
block: Int!
timestamp: Int!
gasUsed: BigDecimal!
gasPrice: BigDecimal!
2021-09-10 12:49:37 +02:00
tokens: [TokenValue!] # tokens transfered
}
2021-09-02 11:08:47 +02:00
type DatatokenFactory @entity {
id: ID!
tokenCount: Int! # Number of datatokens
2021-09-10 12:49:37 +02:00
datatokens: [Tokens!] @derivedFrom(field: "factory")
2020-11-26 07:38:08 +01:00
}
type MetadataUpdate @entity {
id: ID! # update tx + datatokenAddress
datatokenId: Datatoken!
datatokenAddress: String!
userAddress: String!
2021-09-02 11:08:47 +02:00
//all fields from the market edit
name
description
author
links
timeout
block: Int!
timestamp: Int!
tx: Bytes!
2020-11-26 07:38:08 +01:00
}
2021-09-02 11:08:47 +02:00
type Asset {
did
name
description
author
services ? [ access, compute ] ?
datatoken : Datatoken
}
2020-11-26 12:10:45 +01:00
type TokenOrder @entity {
id: ID! # datatokenId + userAddress + tx
datatokenId: Datatoken!
consumer: User!
payer: User!
amount: BigDecimal!
serviceId: Int!
marketFeeCollector: User
marketFee: BigDecimal!
timestamp: Int!
tx: Bytes
block: Int!
2020-11-26 12:10:45 +01:00
}
2020-11-26 07:38:08 +01:00
type TokenBalance @entity {
id: ID! # datatokenId + userAddress
userAddress: User!
datatokenId: Datatoken!
balance: BigDecimal!
2020-11-26 07:38:08 +01:00
}
type TokenTransaction @entity {
id: ID! # Log ID
event: String
datatokenAddress: Datatoken
userAddress: User
block: Int!
gasUsed: BigDecimal!
gasPrice: BigDecimal!
timestamp: Int!
tx: Bytes!
2020-11-26 07:38:08 +01:00
}
type User @entity {
id: ID!
sharesOwned: [PoolShare!] @derivedFrom(field: "userAddress")
tokenBalancesOwned: [TokenBalance!] @derivedFrom(field: "userAddress")
tokensOwned: [Datatoken!] @derivedFrom(field: "minter")
poolTransactions: [PoolTransaction!] @derivedFrom(field: "userAddress")
poolTransactionsTokenValues: [PoolTransactionTokenValues!]
@derivedFrom(field: "userAddress")
tokenTransactions: [TokenTransaction!] @derivedFrom(field: "userAddress")
orders: [TokenOrder!] @derivedFrom(field: "payer")
freSwaps: [FixedRateExchangeSwap!] @derivedFrom(field: "by")
}
type FixedRateExchange @entity {
id: ID! # fixed rate exchange id
exchangeOwner: User!
datatoken: Datatoken!
2021-09-02 11:08:47 +02:00
// will be a token not just an address
baseToken: String!
2021-09-02 11:08:47 +02:00
// no need for this, since it will be on token
baseTokenSymbol: String!
rate: BigDecimal!
active: Boolean!
updates: [FixedRateExchangeUpdate!] @derivedFrom(field: "exchangeId")
swaps: [FixedRateExchangeSwap!] @derivedFrom(field: "exchangeId")
}
type FixedRateExchangeUpdate @entity {
id: ID!
exchangeId: FixedRateExchange!
oldRate: BigDecimal!
newRate: BigDecimal!
oldActive: Boolean!
newActive: Boolean!
block: Int!
timestamp: Int!
tx: Bytes!
}
type FixedRateExchangeSwap @entity {
id: ID!
exchangeId: FixedRateExchange!
by: User!
baseTokenAmount: BigDecimal!
dataTokenAmount: BigDecimal!
block: Int!
timestamp: Int!
tx: Bytes!
}
type Dispenser @entity {
id: ID! # dispenser datatoken
active: Boolean!
owner: User!
minterApproved: Boolean!
isTrueMinter: Boolean!
maxTokens: BigDecimal!
maxBalance: BigDecimal!
balance: BigDecimal!
datatoken: Datatoken!
dispenses: [DispenserTransaction!] @derivedFrom(field: "dispenserId")
}
type DispenserTransaction @entity {
id: ID!
dispenserId: Dispenser!
datatoken: Datatoken!
user: User!
amount: BigDecimal!
block: Int!
timestamp: Int!
tx: Bytes!
type: String!
}
2021-09-02 16:57:14 +02:00
type PoolSnapshotTokenValue @entity {
id: ID! # pool tx + tokenAddress
tokenAddress: String!
value: BigDecimal!
tokenReserve: BigDecimal!
feeValue: BigDecimal! # Swap fee value in OCEAN
type: String!
poolSnapshot: PoolSnapshot!
}
type PoolSnapshot @entity {
id: ID!
pool: Pool!
totalShares: BigDecimal!
swapVolume: BigDecimal!
swapFees: BigDecimal!
timestamp: Int!
tokens: [PoolSnapshotTokenValue!] @derivedFrom(field: "poolSnapshot")
}