ocean-subgraph/schema.graphql

474 lines
14 KiB
GraphQL
Raw Normal View History

2021-09-02 11:08:47 +02:00
type Token @entity {
2021-11-15 13:04:26 +01:00
id: ID!
symbol: String
name: String
decimals: Int!
address: String!
cap: BigDecimal
supply: BigDecimal
isDatatoken: Boolean!
"address of ERC721 that owns the token, valid only for datatokens"
nft: Nft
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"array of addresses with minter role, can be user wallet address, dispenser etc."
minter: [User!]
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"TODO: maybe we change name , depends on audit results . It's the address that collects the payments (NOT fees)"
2021-11-23 08:59:59 +01:00
feeManager: String
2021-11-15 13:04:26 +01:00
"address of the market where the datatoken was created. This address collects market fees."
2021-11-23 08:59:59 +01:00
publishMarketFeeAddress: String
2021-11-15 13:04:26 +01:00
"adreess of fee token (can be Ocean, ETH, etc.)"
2021-11-23 08:59:59 +01:00
publishMarketFeeToken: String
2021-11-15 13:04:26 +01:00
"fee amount. Fixed value, expressed in wei in contracts, needs conversion in decimals."
2021-11-23 08:59:59 +01:00
publishMarketFeeAmmount: BigDecimal
2021-11-15 13:04:26 +01:00
"template ID of the datatoken"
templateId: Int
"number of addresses holding a balance of datatoken , TODO: can we actually calculate this? what happens when users trade the dts"
2021-12-02 13:10:23 +01:00
holderCount: BigInt!
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"number of orders executed for this datatoken"
2021-12-02 13:10:23 +01:00
orderCount: BigInt!
2021-11-15 13:04:26 +01:00
2022-01-31 14:03:33 +01:00
"orders created with the datatoken, only available for datatokens"
orders: [Order!] @derivedFrom(field:"datatoken")
2022-01-31 11:09:05 +01:00
"fixed rate exchanges, only available for datatokens"
fixedRateExchanges: [FixedRateExchange!] @derivedFrom(field:"datatoken")
"dispensers using this token"
dispensers: [Dispenser!] @derivedFrom(field:"token")
"pools, only available for datatokens"
pools: [Pool!] @derivedFrom(field:"datatoken")
2021-11-15 13:04:26 +01:00
"block time datatoken was created"
2021-12-02 13:10:23 +01:00
createdTimestamp: Int!
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"datatoken creation transaction id"
2021-12-02 12:08:47 +01:00
tx: String!
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"block number when it was created"
2021-12-02 13:10:23 +01:00
block: Int!
}
2021-11-15 13:04:26 +01:00
"utility type"
2021-11-04 16:00:43 +01:00
type TokenValuePair @entity {
"address of the token"
2021-11-04 16:00:43 +01:00
id : ID!
token : Token!
value : BigDecimal!
}
2021-11-04 16:00:43 +01:00
type Nft @entity{
2021-11-15 13:04:26 +01:00
"nft address"
id: ID!
symbol: String!
name: String!
tokenUri: String!
2021-11-29 13:11:58 +01:00
2021-11-15 13:04:26 +01:00
"address of the owner of the nft"
owner: String!
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"same as id, it's just for easy discoverability"
address: String!
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"provider url that can decrypt the ddo"
providerUrl: String
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"state of the asset (described in docs)"
assetState: Int!
2021-11-04 16:00:43 +01:00
managerRole: [String!]
erc20DeployerRole: [String!]
storeUpdateRole: [String!]
2021-11-15 13:04:26 +01:00
"addresses that can update the metadata"
metadataRole: [String!]
"template address"
template: String!
2021-11-15 13:04:26 +01:00
"block time nft was created"
createdTimestamp: Int!
"nft creation transaction id"
2021-12-02 12:08:47 +01:00
tx: String!
2021-11-15 13:04:26 +01:00
"block number when it was created"
block: Int
}
type Pool @entity {
2021-11-15 13:04:26 +01:00
"pool address"
2021-11-23 08:59:59 +01:00
id: ID!
2021-11-15 13:04:26 +01:00
"owner address, pool controller"
controller: String!
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"only finalized pools are relevant to us"
isFinalized: Boolean!
2021-09-02 11:08:47 +02:00
2021-11-15 13:04:26 +01:00
"pool token symbol"
symbol: String
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"pool token name"
name: String
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"maximum supply if any, converted from wei"
2021-11-19 15:42:17 +01:00
cap: BigDecimal
2021-11-15 13:04:26 +01:00
2021-11-23 13:59:34 +01:00
baseToken: Token!
baseTokenLiquidity: BigDecimal!
baseTokenWeight: BigDecimal!
datatoken: Token!
datatokenLiquidity: BigDecimal!
datatokenWeight: BigDecimal!
2021-11-23 08:59:59 +01:00
2022-02-15 17:12:29 +01:00
"publisher market fee : SWAP, JOIN , EXIT"
marketSwapFee: BigDecimal!
2021-11-23 08:59:59 +01:00
2022-02-15 17:12:29 +01:00
"liquidity provider fee"
liquidityProviderFee: BigDecimal!
2021-11-23 08:59:59 +01:00
2022-02-15 17:12:29 +01:00
"OPF Fee percent, fee that goes to Ocean Protocol Foundation : SWAP"
opcFee: BigDecimal!
2021-11-15 13:04:26 +01:00
"total pool token shares"
totalShares: BigDecimal!
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"total tokens that were swaped"
totalSwapVolume: [TokenValuePair!]!
spotPrice: BigDecimal!
"count for when liquidity has been added"
2021-11-23 08:59:59 +01:00
joinCount: BigInt!
2021-11-15 13:04:26 +01:00
"count for when liquidity has been removed"
2021-11-23 08:59:59 +01:00
exitCount: BigInt!
"count for when tokens were swapped"
swapCount: BigInt!
2021-11-23 08:59:59 +01:00
2021-11-15 13:04:26 +01:00
"number of transactions in this pool involving liquidity changes"
transactionCount: BigInt!
2021-09-02 11:08:47 +02:00
2021-11-15 13:04:26 +01:00
"block time when pool was created"
createdTimestamp: Int!
"pool creation transaction id"
2021-12-02 12:08:47 +01:00
tx: String!
2021-11-15 13:04:26 +01:00
"block number when it was created"
block: Int
shares: [PoolShare!] @derivedFrom(field: "pool")
2021-09-10 12:49:37 +02:00
transactions: [PoolTransaction!] @derivedFrom(field: "pool")
}
# we will need to track pool share tx between users - bpool transfer tx event
type PoolShare @entity {
2021-11-15 13:04:26 +01:00
"poolAddress + userAddress"
id: ID!
2021-09-08 13:34:33 +02:00
user: User!
pool: Pool!
2021-11-19 15:42:17 +01:00
shares: BigDecimal!
}
2021-11-15 13:04:26 +01:00
enum PoolTransactionType {
JOIN,
EXIT,
SWAP,
SETUP
}
2021-11-12 14:22:35 +01:00
2021-09-10 12:49:37 +02:00
type PoolTransaction @entity {
2021-11-15 13:04:26 +01:00
"tx address + caller address"
id: ID!
"pool related to this tx"
pool: Pool!
"user that initiates the tx"
user: User!
2021-12-02 13:10:23 +01:00
type: PoolTransactionType!
2021-11-15 13:04:26 +01:00
"number of shares transfered"
sharesTransferAmount: BigDecimal!
2021-11-23 08:59:59 +01:00
"block time when pool was created"
2021-11-23 13:59:34 +01:00
timestamp: Int!
2021-11-23 08:59:59 +01:00
"pool creation transaction id"
2021-12-02 12:08:47 +01:00
tx: String!
2021-11-23 08:59:59 +01:00
"block number when it was created"
block: Int
2021-11-12 14:22:35 +01:00
2021-11-15 13:04:26 +01:00
gasLimit: BigDecimal!
"price expressed in eth"
gasPrice: BigDecimal!
2021-11-19 15:42:17 +01:00
"base tokens transfered"
baseToken: Token
2021-11-23 08:59:59 +01:00
"number of base tokens transfered, if value is negative it means it was removed"
2021-11-19 15:42:17 +01:00
baseTokenValue: BigDecimal
2021-11-23 08:59:59 +01:00
"datatokens transfered"
datatoken: Token
2021-11-23 08:59:59 +01:00
"number of datatokens transfered, if value is negative it means it was removed"
2021-11-19 15:42:17 +01:00
datatokenValue: BigDecimal
}
2021-11-26 09:04:14 +01:00
type Order @entity {
"transaction hash - token address - from address"
id: ID!
2022-01-31 11:09:05 +01:00
datatoken: Token!
consumer: User!
payer: User!
amount: BigDecimal!
2022-01-31 11:09:05 +01:00
serviceIndex: Int!
# the fees will be updated from an event that will be created after (todo)
2021-11-26 09:04:14 +01:00
publishingMarket: User
publishingMarketToken: Token #
2022-02-11 12:41:47 +01:00
publishingMarketAmmount: BigDecimal #call contract to get fee amount
2021-11-26 09:04:14 +01:00
consumerMarket: User
consumerMarketToken: Token #
2022-02-11 12:41:47 +01:00
consumerMarketAmmount: BigDecimal #call contract to get fee amount
2021-11-10 13:47:44 +01:00
createdTimestamp: Int!
2021-12-02 12:08:47 +01:00
tx: String!
block: Int!
2020-11-26 12:10:45 +01:00
}
# to be removed, mabye for pool shares only
2020-11-26 07:38:08 +01:00
type TokenTransaction @entity {
id: ID! # Log ID
event: String
token: Token
user: User
block: Int!
gasUsed: BigDecimal!
gasPrice: BigDecimal!
2021-11-10 13:47:44 +01:00
createdTimestamp: Int!
2021-12-02 12:08:47 +01:00
tx: String!
2020-11-26 07:38:08 +01:00
}
type User @entity {
id: ID!
sharesOwned: [PoolShare!] @derivedFrom(field: "user")
2021-11-04 16:00:43 +01:00
tokenBalancesOwned: [TokenValuePair!]
tokensOwned: [Token!] @derivedFrom(field: "minter")
poolTransactions: [PoolTransaction!] @derivedFrom(field: "user")
orders: [Order!] @derivedFrom(field: "payer")
freSwaps: [FixedRateExchangeSwap!] @derivedFrom(field: "by")
}
type FixedRateExchange @entity {
2021-11-15 13:04:26 +01:00
"fixed rate exchange id"
id: ID!
2021-11-04 16:00:43 +01:00
owner: User!
datatoken: Token!
baseToken: Token!
2022-02-11 12:41:47 +01:00
"amount of datatokens available to be sold, this is relevant if the exchange is not able to mint"
datatokenBalance: BigDecimal!
"amount of basetokens available to be collected by the owner"
baseTokenBalance: BigDecimal!
price: BigDecimal!
active: Boolean!
2021-11-15 13:04:26 +01:00
"amount of total basetokens spent"
totalSwapValue: BigDecimal!
"address that is allowed to swap tokens"
allowedSwapper: String
"if the owner allowes the fre to mint"
withMint: Boolean
"if the fre has the minter role on the datatoken"
2022-02-15 17:12:29 +01:00
isMinter: Boolean
marketSwapFee: BigDecimal!
updates: [FixedRateExchangeUpdate!] @derivedFrom(field: "exchangeId")
swaps: [FixedRateExchangeSwap!] @derivedFrom(field: "exchangeId")
2021-11-10 13:47:44 +01:00
createdTimestamp: Int!
2021-12-02 12:08:47 +01:00
tx: String!
2021-11-10 13:47:44 +01:00
block: Int!
}
type FixedRateExchangeUpdate @entity {
id: ID!
exchangeId: FixedRateExchange!
2021-11-10 13:47:44 +01:00
oldPrice: BigDecimal
newPrice: BigDecimal
2021-11-10 13:47:44 +01:00
oldActive: Boolean
newActive: Boolean
oldAllowedSwapper: String
newAllowedSwapper: String
block: Int!
2021-11-10 13:47:44 +01:00
createdTimestamp: Int!
2021-12-02 12:08:47 +01:00
tx: String!
}
type FixedRateExchangeSwap @entity {
id: ID!
exchangeId: FixedRateExchange!
by: User!
baseTokenAmount: BigDecimal!
dataTokenAmount: BigDecimal!
block: Int!
2021-11-10 13:47:44 +01:00
createdTimestamp: Int!
2021-12-02 12:08:47 +01:00
tx: String!
}
type Dispenser @entity {
"token address"
2021-11-15 13:04:26 +01:00
id: ID!
active: Boolean!
"if using the enterprise template the owner will always be the erc721 factory, for normal template it will a user"
owner: String
token: Token!
2021-11-10 13:47:44 +01:00
allowedSwapper: String
2021-11-15 13:04:26 +01:00
isMinter: Boolean
"max tokens that can be dispensed"
maxTokens: BigDecimal!
"max balance of requester. If the balance is higher, the dispense is rejected"
maxBalance: BigDecimal!
"how many tokens are left"
balance: BigDecimal!
block: Int!
createdTimestamp: Int!
tx: String!
2021-11-04 16:00:43 +01:00
dispenses: [DispenserTransaction!] @derivedFrom(field: "dispenser")
}
type DispenserTransaction @entity {
2021-11-10 13:47:44 +01:00
id: ID!
dispenser: Dispenser!
user: User!
amount: BigDecimal!
block: Int!
2021-11-10 13:47:44 +01:00
createdTimestamp: Int!
2021-12-02 12:08:47 +01:00
tx: String!
2021-09-02 16:57:14 +02:00
}
type PoolSnapshot @entity {
id: ID!
pool: Pool!
2021-11-23 10:54:40 +01:00
"total pool shares at the end of the 24h interval"
2021-09-02 16:57:14 +02:00
totalShares: BigDecimal!
2021-11-15 13:04:26 +01:00
"swap value 24h"
swapVolume: BigDecimal!
"swap fee value 24h"
swapFees: BigDecimal!
"date without time"
2021-11-23 13:59:34 +01:00
date: Int!
2021-11-23 10:54:40 +01:00
"last spot price in the 24h interval"
spotPrice: BigDecimal!
baseToken: Token!
baseTokenLiquidity: BigDecimal!
2021-09-02 16:57:14 +02:00
2021-11-23 10:54:40 +01:00
datatoken: Token!
datatokenLiquidity: BigDecimal!
2021-11-23 10:54:40 +01:00
}
"utility type"
type GlobalTotalLiquidityPair @entity {
"address of the token"
id : ID!
globalStatistic: GlobalStatistic!
token : Token!
value : BigDecimal!
}
"utility type"
type GlobalTotalPoolSwapPair @entity {
"address of the token"
id : ID!
globalStatistic: GlobalStatistic!
token : Token!
value : BigDecimal!
}
"utility type"
type GlobalTotalFixedSwapPair @entity {
"address of the token"
id : ID!
globalStatistic: GlobalStatistic!
token : Token!
value : BigDecimal!
}
type GlobalStatistic @entity {
id: ID!
"total liquidity for each base token in pools"
totalLiquidity: [GlobalTotalLiquidityPair!]! @derivedFrom(field: "globalStatistic")
"total swap volume for each base token in pools"
totalPoolSwapVolume: [GlobalTotalPoolSwapPair!]! @derivedFrom(field: "globalStatistic")
"total swap volume for each base token in fixed rate exchanges"
totalFixedSwapVolume: [GlobalTotalFixedSwapPair!] @derivedFrom(field: "globalStatistic")
"number of total orders. pool orders + fixed rate exchange orders + dispenser orders"
orderCount: Int!
2021-12-07 10:47:58 +01:00
"total nfts(erc721) created"
nftCount: Int!
"total datatokens (tokens with isDatatoken = true) created"
datatokenCount:Int!
2021-12-07 10:47:58 +01:00
"number of pools"
poolCount: Int!
"number of fixed rate exchanges"
fixedCount: Int!
"number of dispensers created"
dispenserCount: Int!
}
2021-12-02 12:08:47 +01:00
enum NftUpdateType {
METADATA_CREATED,
METADATA_UPDATED,
STATE_UPDATED,
TOKENURI_UPDATED
}
2021-11-29 13:11:58 +01:00
type NftUpdate @entity {
id: ID! # update tx + nft address
tokenUri: String!
2021-12-02 12:08:47 +01:00
nft: Nft!
"provider url that can decrypt the ddo"
providerUrl: String
2021-11-29 13:11:58 +01:00
"user that made the update"
userAddress: String!
2021-12-02 12:08:47 +01:00
"state of the asset in this update"
2021-11-29 13:11:58 +01:00
assetState: Int!
2021-12-02 12:08:47 +01:00
"type of the update: metadata created, metadata update, state update, token uri update"
type: NftUpdateType!
block: Int!
2021-11-29 13:11:58 +01:00
timestamp: Int!
2021-12-02 12:08:47 +01:00
tx: String!
}