π¦ Ocean Protocol Subgraph
- π Get Started
- β΅ Example Queries
- π Development on barge
- π Deploying graphs for live networks
- π Testing
- β¨ Code Style
- π³ Releases
- β¬οΈ Deployment
- π License
This subgraph is deployed under /subgraphs/name/oceanprotocol/ocean-subgraph/ namespace for all networks the Ocean Protocol contracts are deployed to:
- v4.subgraph.mainnet.oceanprotocol.com
- v4.subgraph.polygon.oceanprotocol.com
- v4.subgraph.bsc.oceanprotocol.com
- v4.subgraph.moonriver.oceanprotocol.com
- v4.subgraph.energyweb.oceanprotocol.com
- v4.subgraph.mumbai.oceanprotocol.com
All Data NFTs
{
nfts(orderBy: createdTimestamp, orderDirection: desc, first: 1000) {
id
symbol
name
creator
createdTimestamp
}
}Note: 1000 is the maximum number of items the subgraph can return.
Total Orders for Each User
{
users(first: 1000) {
id
totalOrders
}
}Total Orders for All Users
{
users(first: 1000) {
id
totalOrders
}
}Note: 1000 is the maximum number of items the subgraph can return.
Total Orders for a Specific User
{
user(id: $user) {
id
totalOrders
}
}Note: all ETH addresses like
$userin above example need to be passed as a lowercase string.
All Orders
{
orders(orderBy: createdTimestamp, orderDirection: desc, first: 1000){
amount
datatoken {
id
}
consumer {
id
}
payer {
id
}
}
}
Note: 1000 is the maximum number of items the subgraph can return.
- Clone barge and run it in another terminal:
git clone https://github.com/oceanprotocol/barge.git
cd barge
./start_ocean.sh --with-thegraphIf you have cloned Barge previously, make sure you are using the latest version by running git pull.
- Switch back to your main terminal and clone the repo and install dependencies:
git clone https://github.com/oceanprotocol/ocean-subgraph/
cd ocean-subgraph
npm i- Let the components know where to pickup the smart contract addresses.
export ADDRESS_FILE="${HOME}/.ocean/ocean-contracts/artifacts/address.json"
- Generate the subgraphs
node ./scripts/generatenetworkssubgraphs.js barge
npm run codegen- To deploy a subgraph use:
npm run create:local-barge npm run deploy:local-barge
npm run create:local
npm run deploy:local- Alternatively, if you want to get the sub-graph quickly running on barge, you can run
npm run quickstart:bargewhich combines steps 4-5 above.
You now have a local graph-node running on http://127.0.0.1:9000/subgraphs/name/oceanprotocol/ocean-subgraph/graphql
- Clone the repo and install dependencies:
git clone https://github.com/oceanprotocol/ocean-subgraph/
cd ocean-subgraph
npm i- Generate & deploy on rinkeby
npm run quickstart:rinkeby- Please note: the
npm run testcommand is currently not working due to this issue.
To run the integration tests locally, first start up barge by following the instructions above, then run the following terminal commands from the ocean-subgraph folder:
export ADDRESS_FILE="${HOME}/.ocean/ocean-contracts/artifacts/address.json"
npm run test-integrationFor linting and auto-formatting you can use from the root of the project:
# lint all js with eslint
npm run lint
# auto format all js & css with prettier, taking all configs into account
npm run formatReleases are managed semi-automatically. They are always manually triggered from a developer's
machine with release scripts. From a clean main branch you can run the release task bumping
the version accordingly based on semantic versioning:
npm run releaseThe task does the following:
- bumps the project version in
package.json,package-lock.json - auto-generates and updates the CHANGELOG.md file from commit messages
- creates a Git tag
- commits and pushes everything
- creates a GitHub release with commit messages as description
- Git tag push will trigger Travis to do a npm release
For the GitHub releases steps a GitHub personal access token, exported as GITHUB_TOKEN is required. Setup
Do the following to deploy the ocean-subgraph to a graph-node running locally, pointed against mainnet:
npm run codegen
# deploy
npm run create:local
npm run deploy:localTo deploy a subgraph connected to Rinkeby or Ropsten test networks, use instead:
# Rinkeby
npm run create:local-rinkeby
npm run deploy:local-rinkeby
# Ropsten
npm run create:local-ropsten
npm run deploy:local-ropstenYou can edit the event handler code and then run npm run deploy:local, with some caveats:
- Running deploy will fail if the code has no changes
- Sometimes deploy will fail no matter what, in this case:
- Stop the docker-compose run (
docker-compose downor Ctrl+C) This should stop the graph-node, ipfs and postgres containers - Delete the
ipfsandpostgresfolders in/docker/data(rm -rf ./docker/data/*) - Run
docker-compose upto restart graph-node, ipfs and postgres - Run
npm run create:localto create the ocean-subgraph - Run
npm run deploy:localto deploy the ocean-subgraph
- Stop the docker-compose run (
To deploy to one of the remote nodes run by Ocean, you can do port-forwarding and the above
:localcommands will work as is.
Copyright ((C)) 2023 Ocean Protocol Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
