mirror of
https://github.com/oceanprotocol/ocean-subgraph.git
synced 2024-12-02 05:57:29 +01:00
c6004336ae
* first cut, still WIP * use specific contracts image * fix missing abi * more predictoor * more predictoor * done predictoor logic * fix * update * merge #682 * update ready logic * fixes * lint * increase timeout * add oasis-saphire-testnet * bump to contracts v2.0.0-next.2 * add loop for crappy rpc * merge template * fixes 1 * fixes * fix predictor detection * Use latest predictoor contracts (#708) * Update tests.yml * Update handlers * Update schema * Linter * Update abi and fields * use latest contracts * use latest contracts * expose agg preds in trueval * fix abi path * remove unused abis * fix --------- Co-authored-by: trizin <25263018+trizin@users.noreply.github.com> * bump contracts * Remove floatValue from predictoor trueval handler (#714) * Update predictSlot status on trueval submit (#716) * Update status * Fix * Update contracts version * Use number for predict slot * Fixes * Linter * Fix * Fix * tostring * Fix * Fix * Fix * use contracts v2.0.0-next.11 * use latest graph-cli * remove --debug flag * Feature/add predictoor pause event (#723) * bump contracts * add pause for predictoorContract * bump contracts to v2.0.0-13 * bum contracts & add sapphire mainnet * fix lock --------- Co-authored-by: trizin <25263018+trizin@users.noreply.github.com>
40 lines
970 B
YAML
40 lines
970 B
YAML
version: '3'
|
|
services:
|
|
graph-node:
|
|
image: graphprotocol/graph-node:v0.28.2
|
|
ports:
|
|
- '9000:8000'
|
|
- '8001:8001'
|
|
- '8020:8020'
|
|
- '8030:8030'
|
|
- '8040:8040'
|
|
depends_on:
|
|
- ipfs
|
|
- postgres
|
|
environment:
|
|
postgres_host: postgres
|
|
postgres_user: graph-node
|
|
postgres_pass: let-me-in
|
|
postgres_db: graph-node
|
|
ipfs: 'ipfs:5001'
|
|
ethereum: 'oasis_saphire_testnet:http://192.168.136.129:8080'
|
|
RUST_LOG: warning
|
|
GRAPH_ETHEREUM_MAX_BLOCK_RANGE_SIZE: 100
|
|
ipfs:
|
|
image: ipfs/go-ipfs:v0.4.23
|
|
ports:
|
|
- '5001:5001'
|
|
volumes:
|
|
- ./data/ipfs:/data/ipfs
|
|
postgres:
|
|
image: postgres
|
|
ports:
|
|
- '5432:5432'
|
|
command: ['postgres', '-cshared_preload_libraries=pg_stat_statements']
|
|
environment:
|
|
POSTGRES_USER: graph-node
|
|
POSTGRES_PASSWORD: let-me-in
|
|
POSTGRES_DB: graph-node
|
|
volumes:
|
|
- ./data/postgres:/var/lib/postgresql/data
|