diff --git a/Multi-chain/transfers/docker-compose.yml b/Multi-chain/transfers/docker-compose.yml index 390ba39..99d9d17 100644 --- a/Multi-chain/transfers/docker-compose.yml +++ b/Multi-chain/transfers/docker-compose.yml @@ -18,7 +18,7 @@ services: retries: 5 subquery-node-polkadot: - image: subquerynetwork/subql-node:latest + image: subquerynetwork/subql-node-substrate:latest depends_on: "postgres": condition: service_healthy @@ -47,7 +47,7 @@ services: retries: 10 subquery-node-kusama: - image: subquerynetwork/subql-node:latest + image: subquerynetwork/subql-node-substrate:latest depends_on: "postgres": condition: service_healthy @@ -74,26 +74,8 @@ services: interval: 3s timeout: 5s retries: 10 - - graphql-engine: - image: subquerynetwork/subql-query:latest - ports: - - 3000:3000 - depends_on: - "postgres": - condition: service_healthy - restart: unless-stopped - environment: - DB_USER: postgres - DB_PASS: postgres - DB_DATABASE: postgres - DB_HOST: postgres - DB_PORT: 5432 - command: - - --name=multi-transfers - - --playground subquery-node-project-assethub: - image: subquerynetwork/subql-node:latest + image: subquerynetwork/subql-node-substrate:latest depends_on: postgres: condition: service_healthy @@ -120,3 +102,20 @@ services: interval: 3s timeout: 5s retries: 10 + graphql-engine: + image: subquerynetwork/subql-query:latest + ports: + - 3000:3000 + depends_on: + "postgres": + condition: service_healthy + restart: unless-stopped + environment: + DB_USER: postgres + DB_PASS: postgres + DB_DATABASE: postgres + DB_HOST: postgres + DB_PORT: 5432 + command: + - --name=multi-transfers + - --playground diff --git a/Multi-chain/transfers/project-assethub.yaml b/Multi-chain/transfers/project-assethub.yaml index 036e99c..5195763 100644 --- a/Multi-chain/transfers/project-assethub.yaml +++ b/Multi-chain/transfers/project-assethub.yaml @@ -20,8 +20,8 @@ network: chainId: "0x68d56f15f85d3136970ec16946040bc1752654e906147f7e43e9d539d7c3de2f" endpoint: [ - "wss://statemint.api.onfinality.io/public-ws", - "wss://statemint-rpc.polkadot.io", + "wss://rpc-asset-hub-polkadot.luckyfriday.io", + "wss://asset-hub-polkadot-rpc.dwellir.com", ] dataSources: - kind: substrate/Runtime diff --git a/Multi-chain/transfers/project-kusama.yaml b/Multi-chain/transfers/project-kusama.yaml index 194e6b4..ef34f43 100644 --- a/Multi-chain/transfers/project-kusama.yaml +++ b/Multi-chain/transfers/project-kusama.yaml @@ -19,7 +19,10 @@ schema: network: chainId: "0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe" endpoint: - ["wss://kusama.api.onfinality.io/public-ws", "wss://kusama-rpc.polkadot.io"] + [ + "wss://kusama.rpc.subquery.network/public-ws", + "wss://kusama-rpc.dwellir.com", + ] dataSources: - kind: substrate/Runtime startBlock: 1 diff --git a/Multi-chain/transfers/project-polkadot.yaml b/Multi-chain/transfers/project-polkadot.yaml index 124a237..7e9eec2 100644 --- a/Multi-chain/transfers/project-polkadot.yaml +++ b/Multi-chain/transfers/project-polkadot.yaml @@ -19,7 +19,10 @@ schema: network: chainId: "0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3" endpoint: - ["wss://polkadot.api.onfinality.io/public-ws", "wss://rpc.polkadot.io"] + [ + "wss://polkadot.rpc.subquery.network/public-ws", + "wss://polkadot-rpc.dwellir.com", + ] dataSources: - kind: substrate/Runtime startBlock: 1 diff --git a/Multi-chain/transfers/subquery-multichain.yaml b/Multi-chain/transfers/subquery-multichain.yaml index 7ed64fc..af740c5 100644 --- a/Multi-chain/transfers/subquery-multichain.yaml +++ b/Multi-chain/transfers/subquery-multichain.yaml @@ -1,7 +1,7 @@ specVersion: 1.0.0 query: - name: "@subql/query" - version: "*" + name: '@subql/query' + version: '*' projects: - project-kusama.yaml - project-polkadot.yaml