Send transaction failed: Error: sqToken address not found

Trying to approve in admin page but got error

transaction failed: Error: sqToken address not found
    at e.get (sdk.js:25:19)
    at indexerActions.ts:30:24
    at d (regeneratorRuntime.js:44:17)
    at Generator.<anonymous> (regeneratorRuntime.js:125:22)
    at Generator.next (regeneratorRuntime.js:69:21)
    at f (asyncToGenerator.js:3:20)
    at o (asyncToGenerator.js:22:9)
    at asyncToGenerator.js:27:7
    at new Promise (<anonymous>)
    at asyncToGenerator.js:19:12

docker-compose.yml

coordinator:
    image: onfinality/subql-coordinator:v1.0.0
    container_name: indexer_coordinator
    restart: always
    ports:
      - 8000:8000
    depends_on:
      "postgres":
        condition: service_healthy
    volumes:
      - .projects:/usr/projects
      - /var/run/docker.sock:/var/run/docker.sock
    command:
      ...
      - --ws-endpoint=https://polygon-rpc.com/
1 Like
  1. Please try to upgrade coordinator service image to onfinality/subql-coordinator:v1.0.4
  2. Run docker-compose up -d --no-deps coordinator, this will only upgrade the coordinator service container.
2 Likes

Can confirm these steps fix the error.

1 Like