mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
update lint,prettier , partial schema
This commit is contained in:
parent
efba716ff5
commit
1b5ef439d8
4
.eslintignore
Normal file
4
.eslintignore
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
node_modules
|
||||||
|
data
|
||||||
|
src/types
|
31
.eslintrc
31
.eslintrc
@ -1,14 +1,27 @@
|
|||||||
{
|
{
|
||||||
"parser": "@typescript-eslint/parser",
|
"parser": "@typescript-eslint/parser",
|
||||||
"parserOptions": {
|
"root": true,
|
||||||
"project": ["./tsconfig.json"]
|
"extends": [
|
||||||
},
|
"eslint:recommended",
|
||||||
"extends": ["oceanprotocol", "plugin:prettier/recommended"],
|
"plugin:@typescript-eslint/recommended"
|
||||||
"plugins": ["@typescript-eslint"],
|
],
|
||||||
|
"plugins": [
|
||||||
|
"@typescript-eslint"
|
||||||
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"no-use-before-define": "off",
|
"comma-spacing": [
|
||||||
"eqeqeq": "off",
|
"error",
|
||||||
"@typescript-eslint/no-use-before-define": "error",
|
{
|
||||||
"no-undef": ["warn"]
|
"before": false,
|
||||||
|
"after": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"prefer-const": [
|
||||||
|
"off"
|
||||||
|
],
|
||||||
|
"prettier/prettier": "error",
|
||||||
|
"mocha-no-only/mocha-no-only": [
|
||||||
|
"error"
|
||||||
|
],
|
||||||
}
|
}
|
||||||
}
|
}
|
33
.prettierrc
33
.prettierrc
@ -1,6 +1,31 @@
|
|||||||
{
|
{
|
||||||
"semi": false,
|
"overrides": [
|
||||||
"singleQuote": true,
|
{
|
||||||
"trailingComma": "none",
|
"files": "*.sol",
|
||||||
"tabWidth": 2
|
"options": {
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"explicitTypes": "always",
|
||||||
|
"printWidth": 120,
|
||||||
|
"singleQuote": false,
|
||||||
|
"tabWidth": 4,
|
||||||
|
"useTabs": false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"files": "*.ts",
|
||||||
|
"options": {
|
||||||
|
"bracketSpacing": true,
|
||||||
|
"explicitTypes": "always",
|
||||||
|
"newline-before-return": true,
|
||||||
|
"no-duplicate-variable": [true, "check-parameters"],
|
||||||
|
"no-var-keyword": true,
|
||||||
|
"printWidth": 120,
|
||||||
|
"semi": true,
|
||||||
|
"singleQuote": true,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"trailingComma": "es5",
|
||||||
|
"useTabs": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
259
schema.graphql
259
schema.graphql
@ -1,72 +1,133 @@
|
|||||||
type PoolFactory @entity {
|
type PoolFactory @entity {
|
||||||
id: ID!
|
id: ID!
|
||||||
|
totalValueLocked: [TokenValuePair] # total value locked represented in the base token
|
||||||
totalValueLocked: BigDecimal # total value from all pools expressed in OCEAN
|
totalLiquidity: [TokenValuePair] # total liquidity for each base token
|
||||||
|
totalSwapVolume: [TokenValuePair] # total swap volume for each base token
|
||||||
totalOceanLiquidity: BigDecimal! # Total of OCEAN liquidity from all pools
|
totalSwapFee: [TokenValuePair] # All the swap fee in Ocean
|
||||||
totalSwapVolume: BigDecimal! # All the swap volume in Ocean
|
|
||||||
totalSwapFee: BigDecimal! # All the swap fee in Ocean
|
|
||||||
totalOrderVolume: BigDecimal
|
|
||||||
|
|
||||||
poolCount: Int! # Number of pools
|
poolCount: Int! # Number of pools
|
||||||
finalizedPoolCount: Int! # Number of finalized pools
|
finalizedPoolCount: Int! # Number of finalized pools
|
||||||
orderCount: BigInt # Number of total consumes
|
orderCount: BigInt # Number of total consumes
|
||||||
|
totalOrderVolume: BigDecimal # probably remove due to inconsistencies and imposibility to calculate
|
||||||
|
|
||||||
pools: [Pool!] @derivedFrom(field: "factoryID")
|
pools: [Pool!] @derivedFrom(field: "factoryID")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
type Global @entity {
|
type Global @entity {
|
||||||
id: ID!
|
id: ID!
|
||||||
totalValueLocked: BigDecimal # total value from all pools expressed in OCEAN
|
|
||||||
totalOceanLiquidity: BigDecimal! # Total of OCEAN liquidity from all pools
|
totalValueLocked: [TokenValuePair] # total value locked represented in the base token
|
||||||
totalSwapVolume: BigDecimal! # All the swap volume in Ocean
|
totalLiquidity: [TokenValuePair] # total liquidity for each base token
|
||||||
|
totalSwapVolume: [TokenValuePair] # total swap volume for each base token. pools and fre
|
||||||
|
|
||||||
totalOrderVolume: BigDecimal
|
totalOrderVolume: BigDecimal
|
||||||
orderCount: BigInt
|
|
||||||
poolCount: Int!
|
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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
type TokenValuePair @entity {
|
||||||
|
|
||||||
|
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 #
|
||||||
|
|
||||||
|
creator: String # TODO
|
||||||
|
publisher: String # TODO
|
||||||
|
minter: String # TODO
|
||||||
|
editor: String # TODO
|
||||||
|
|
||||||
|
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 {
|
type Pool @entity {
|
||||||
id: ID! # Pool address
|
id: ID! # Pool address
|
||||||
factoryID: PoolFactory!
|
factoryID --> poolFactory: PoolFactory!
|
||||||
controller: Bytes! # Controller address
|
controller: Bytes! # Controller address
|
||||||
publicSwap: Boolean! # isPublicSwap
|
publicSwap --> isPublicSwap: Boolean! # isPublicSwap
|
||||||
finalized: Boolean! # isFinalized
|
finalized --> isFinalized: Boolean! # isFinalized
|
||||||
|
|
||||||
|
// will be able to change in v4, set by market or maybe by user
|
||||||
symbol: String # Pool token symbol
|
symbol: String # Pool token symbol
|
||||||
|
// will be a user inputed name
|
||||||
name: String # Pool token name
|
name: String # Pool token name
|
||||||
cap: BigInt # Maximum supply if any
|
cap: BigInt # Maximum supply if any
|
||||||
active: Boolean! # isActive
|
active --> isActive: Boolean! # isActive
|
||||||
swapFee: BigDecimal! # Swap Fees
|
swapFee: BigDecimal! # Swap Fees
|
||||||
|
|
||||||
totalWeight: BigDecimal!
|
totalWeight: BigDecimal!
|
||||||
totalShares: BigDecimal! # Total pool token shares
|
totalShares: BigDecimal! # Total pool token shares
|
||||||
totalSwapVolume: BigDecimal! # Total swap volume in OCEAN
|
totalSwapVolume: BigDecimal! # Total swap volume in main token
|
||||||
totalSwapFee: BigDecimal! # Total swap fee in OCEAN
|
totalSwapFee: BigDecimal! # Total swap fee in main token
|
||||||
|
|
||||||
valueLocked: BigDecimal! # value locked in pool expressed in OCEAN (captures both Ocean and Datatoken)
|
valueLocked: BigDecimal! # value locked in pool expressed in main token (captures both Ocean and Datatoken)
|
||||||
|
//will be on token
|
||||||
datatokenReserve: BigDecimal! # Total pool reserve of Datatoken
|
datatokenReserve: BigDecimal! # Total pool reserve of Datatoken
|
||||||
oceanReserve: BigDecimal! # Total pool reserve of OCEAN
|
// will be on token
|
||||||
|
mainTokenReserve: BigDecimal! # Total pool reserve of main token
|
||||||
|
|
||||||
spotPrice: BigDecimal!
|
spotPrice: BigDecimal!
|
||||||
consumePrice: BigDecimal!
|
consumePrice: BigDecimal!
|
||||||
|
|
||||||
|
// remove
|
||||||
tokenCount: BigInt! # Number of tokens in the pool
|
tokenCount: BigInt! # Number of tokens in the pool
|
||||||
|
// remove
|
||||||
holderCount: BigInt! # Number of addresses holding a positive balance of pool shares
|
holderCount: BigInt! # Number of addresses holding a positive balance of pool shares
|
||||||
|
|
||||||
|
// what is the point of the counts, we never used them => remove
|
||||||
joinCount: BigInt! # liquidity has been added
|
joinCount: BigInt! # liquidity has been added
|
||||||
exitCount: BigInt! # liquidity has been removed
|
exitCount: BigInt! # liquidity has been removed
|
||||||
swapCount: BigInt!
|
swapCount: BigInt!
|
||||||
transactionCount: BigInt! # Number of transactions in this pool involving liquidity changes
|
transactionCount: BigInt! # Number of transactions in this pool involving liquidity changes
|
||||||
|
|
||||||
|
// remove
|
||||||
datatokenAddress: String!
|
datatokenAddress: String!
|
||||||
|
|
||||||
createTime: Int! # Block time pool was created
|
createTime: Int! # Block time pool was created
|
||||||
tx: Bytes # Pool creation transaction id
|
tx: Bytes # Pool creation transaction id
|
||||||
|
block
|
||||||
|
|
||||||
tokens: [PoolToken!] @derivedFrom(field: "poolId")
|
tokens: [PoolToken!] @derivedFrom(field: "poolId")
|
||||||
shares: [PoolShare!] @derivedFrom(field: "poolId")
|
shares: [PoolShare!] @derivedFrom(field: "poolId")
|
||||||
transactions: [PoolTransaction!] @derivedFrom(field: "poolAddress")
|
transactions: [PoolTransaction!] @derivedFrom(field: "poolAddress")
|
||||||
|
//this doesn't make sens, probably here because we had to link to pool
|
||||||
transactionsTokenValues: [PoolTransactionTokenValues!] @derivedFrom(field: "poolAddress")
|
transactionsTokenValues: [PoolTransactionTokenValues!] @derivedFrom(field: "poolAddress")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//PoolToken - all good as it is
|
||||||
|
|
||||||
type PoolToken @entity {
|
type PoolToken @entity {
|
||||||
id: ID! # poolId + token address
|
id: ID! # poolId + token address
|
||||||
|
// can be on multiple pools, should remove
|
||||||
poolId: Pool!
|
poolId: Pool!
|
||||||
isDatatoken: Boolean!
|
isDatatoken: Boolean!
|
||||||
address: String
|
address: String
|
||||||
@ -79,61 +140,7 @@ type PoolToken @entity {
|
|||||||
decimals: Int
|
decimals: Int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// not sure if we should keep both PoolToken and Datatoken
|
||||||
|
|
||||||
type PoolShare @entity {
|
|
||||||
id: ID! # poolId + userAddress
|
|
||||||
userAddress: User!
|
|
||||||
poolId: Pool!
|
|
||||||
balance: BigDecimal!
|
|
||||||
}
|
|
||||||
|
|
||||||
type PoolTransactionTokenValues @entity {
|
|
||||||
id: ID! # pool tx + tokenAddress
|
|
||||||
txId: PoolTransaction!
|
|
||||||
poolToken: PoolToken!
|
|
||||||
poolAddress: Pool!
|
|
||||||
userAddress: User!
|
|
||||||
tokenAddress: String!
|
|
||||||
|
|
||||||
value: BigDecimal!
|
|
||||||
tokenReserve: BigDecimal!
|
|
||||||
feeValue: BigDecimal! # Swap fee value in OCEAN
|
|
||||||
type: String!
|
|
||||||
}
|
|
||||||
|
|
||||||
type PoolTransaction @entity {
|
|
||||||
id: ID! # pool tx
|
|
||||||
poolAddress: Pool
|
|
||||||
userAddress: User # User address that initiates the swap
|
|
||||||
poolAddressStr: String!
|
|
||||||
userAddressStr: String!
|
|
||||||
|
|
||||||
sharesTransferAmount: BigDecimal! #
|
|
||||||
sharesBalance: BigDecimal!
|
|
||||||
|
|
||||||
spotPrice: BigDecimal!
|
|
||||||
consumePrice: BigDecimal!
|
|
||||||
tx: Bytes!
|
|
||||||
event: String
|
|
||||||
block: Int!
|
|
||||||
timestamp: Int!
|
|
||||||
gasUsed: BigDecimal!
|
|
||||||
gasPrice: BigDecimal!
|
|
||||||
|
|
||||||
oceanReserve: BigDecimal!
|
|
||||||
datatokenReserve: BigDecimal!
|
|
||||||
|
|
||||||
tokens: [PoolTransactionTokenValues!] @derivedFrom(field: "txId")
|
|
||||||
}
|
|
||||||
|
|
||||||
type DatatokenFactory @entity {
|
|
||||||
id: ID!
|
|
||||||
|
|
||||||
tokenCount: Int! # Number of datatokens
|
|
||||||
datatokens: [Datatoken!] @derivedFrom(field: "factoryID")
|
|
||||||
}
|
|
||||||
|
|
||||||
type Datatoken @entity {
|
type Datatoken @entity {
|
||||||
id: ID! # token address
|
id: ID! # token address
|
||||||
factoryID: DatatokenFactory!
|
factoryID: DatatokenFactory!
|
||||||
@ -144,13 +151,17 @@ type Datatoken @entity {
|
|||||||
address: String!
|
address: String!
|
||||||
cap: BigDecimal!
|
cap: BigDecimal!
|
||||||
supply: BigDecimal!
|
supply: BigDecimal!
|
||||||
minter: User!
|
minter: String!
|
||||||
publisher: String!
|
publisher: String!
|
||||||
|
|
||||||
|
// do we care about this?
|
||||||
holderCount: BigInt! # Number of addresses holding a balance of datatoken
|
holderCount: BigInt! # Number of addresses holding a balance of datatoken
|
||||||
orderCount: BigInt! # Number of orders executed for this dataset
|
orderCount: BigInt! # Number of orders executed for this dataset
|
||||||
|
|
||||||
|
// remove, doesn't make any sense, especially in v4
|
||||||
metadataUpdateCount: BigInt!
|
metadataUpdateCount: BigInt!
|
||||||
|
|
||||||
|
// array
|
||||||
orderVolume: BigDecimal
|
orderVolume: BigDecimal
|
||||||
createTime: Int! # Block time datatoken was created
|
createTime: Int! # Block time datatoken was created
|
||||||
tx: Bytes # Datatoken creation transaction id
|
tx: Bytes # Datatoken creation transaction id
|
||||||
@ -160,6 +171,79 @@ type Datatoken @entity {
|
|||||||
updates: [MetadataUpdate!] @derivedFrom(field: "datatokenId") # list of MetadataUpdate objects
|
updates: [MetadataUpdate!] @derivedFrom(field: "datatokenId") # list of MetadataUpdate objects
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// if we have 2 ,we can check if union works
|
||||||
|
union Token = PoolToken | Datatoken
|
||||||
|
|
||||||
|
|
||||||
|
type PoolShare @entity {
|
||||||
|
id: ID! # poolId + userAddress
|
||||||
|
userAddress -> user: User!
|
||||||
|
poolId --> pool: Pool!
|
||||||
|
balance: BigDecimal!
|
||||||
|
}
|
||||||
|
|
||||||
|
// Will be replaced with a generic PoolTokenValue WIP
|
||||||
|
|
||||||
|
type PoolTransactionTokenValues @entity {
|
||||||
|
id: ID! # pool tx + tokenAddress
|
||||||
|
txId: PoolTransaction!
|
||||||
|
|
||||||
|
// should be an array of PoolToken
|
||||||
|
poolToken: PoolToken!
|
||||||
|
// not sure if needed
|
||||||
|
poolAddress: Pool!
|
||||||
|
//not sure if needed
|
||||||
|
userAddress: User!
|
||||||
|
|
||||||
|
// we will have the poolToken array, what will this be?
|
||||||
|
tokenAddress: String!
|
||||||
|
|
||||||
|
// value of what?
|
||||||
|
value: BigDecimal!
|
||||||
|
|
||||||
|
// should be an array if we keep this
|
||||||
|
tokenReserve: BigDecimal!
|
||||||
|
feeValue: BigDecimal! # Swap fee value in OCEAN
|
||||||
|
type: String!
|
||||||
|
}
|
||||||
|
|
||||||
|
type PoolTransaction @entity {
|
||||||
|
id: ID! # pool tx
|
||||||
|
poolAddress --> pool: Pool
|
||||||
|
userAddress --> user: User # User address that initiates the swap
|
||||||
|
poolAddressStr --> poolAddress: String!
|
||||||
|
userAddressStr --> userAddress: String!
|
||||||
|
|
||||||
|
sharesTransferAmount: BigDecimal! #
|
||||||
|
sharesBalance: BigDecimal!
|
||||||
|
|
||||||
|
spotPrice: BigDecimal!
|
||||||
|
// should not be here
|
||||||
|
consumePrice: BigDecimal!
|
||||||
|
tx: Bytes!
|
||||||
|
event: String
|
||||||
|
block: Int!
|
||||||
|
timestamp: Int!
|
||||||
|
gasUsed: BigDecimal!
|
||||||
|
gasPrice: BigDecimal!
|
||||||
|
|
||||||
|
// should be an array, we will not have only ocean, it will be the tokens array
|
||||||
|
oceanReserve: BigDecimal!
|
||||||
|
datatokenReserve: BigDecimal!
|
||||||
|
|
||||||
|
tokens: [PoolTransactionTokenValues!] @derivedFrom(field: "txId")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// we will have 2 dt factories ?
|
||||||
|
type DatatokenFactory @entity {
|
||||||
|
id: ID!
|
||||||
|
|
||||||
|
tokenCount: Int! # Number of datatokens
|
||||||
|
datatokens: [Datatoken!] @derivedFrom(field: "factoryID")
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
type MetadataUpdate @entity {
|
type MetadataUpdate @entity {
|
||||||
id: ID! # update tx + datatokenAddress
|
id: ID! # update tx + datatokenAddress
|
||||||
datatokenId: Datatoken!
|
datatokenId: Datatoken!
|
||||||
@ -167,11 +251,32 @@ type MetadataUpdate @entity {
|
|||||||
datatokenAddress: String!
|
datatokenAddress: String!
|
||||||
userAddress: String!
|
userAddress: String!
|
||||||
|
|
||||||
|
//all fields from the market edit
|
||||||
|
name
|
||||||
|
description
|
||||||
|
author
|
||||||
|
links
|
||||||
|
timeout
|
||||||
|
|
||||||
|
|
||||||
block: Int!
|
block: Int!
|
||||||
timestamp: Int!
|
timestamp: Int!
|
||||||
tx: Bytes!
|
tx: Bytes!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Asset {
|
||||||
|
|
||||||
|
did
|
||||||
|
name
|
||||||
|
description
|
||||||
|
author
|
||||||
|
services ? [ access, compute ] ?
|
||||||
|
|
||||||
|
datatoken : Datatoken
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
type TokenOrder @entity {
|
type TokenOrder @entity {
|
||||||
id: ID! # datatokenId + userAddress + tx
|
id: ID! # datatokenId + userAddress + tx
|
||||||
datatokenId: Datatoken!
|
datatokenId: Datatoken!
|
||||||
@ -226,7 +331,9 @@ type FixedRateExchange @entity {
|
|||||||
id: ID! # fixed rate exchange id
|
id: ID! # fixed rate exchange id
|
||||||
exchangeOwner: User!
|
exchangeOwner: User!
|
||||||
datatoken: Datatoken!
|
datatoken: Datatoken!
|
||||||
|
// will be a token not just an address
|
||||||
baseToken: String!
|
baseToken: String!
|
||||||
|
// no need for this, since it will be on token
|
||||||
baseTokenSymbol: String!
|
baseTokenSymbol: String!
|
||||||
rate: BigDecimal!
|
rate: BigDecimal!
|
||||||
active: Boolean!
|
active: Boolean!
|
||||||
|
Loading…
Reference in New Issue
Block a user