Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GraphQL conection hang up with message: { type: 'complete' } #35

Open
BartolomeoItaliano opened this issue Dec 14, 2020 · 7 comments
Open

Comments

@BartolomeoItaliano
Copy link

BartolomeoItaliano commented Dec 14, 2020

Hi!

I am building application which synchronizes live with EOS blockchain. I established graphQL connection like this using dfuse-js:

this.dFuseClient.graphql(graphQLQuery, async (message) => { // do something });

My connection hang up after a few days and I am wondering how can I prevent it in the future?
I think terminal message I got was:

console.log(message); // { type: 'complete' }

and just in case one error message before I got:

console.log(message); // { type: 'error', errors: [ { message: 'graphql: hammer search result: rpc error: code = Unavailable desc = transport is closing (trace_id: 4bba6b2d211cb515713be5698c2014e1)' } ], terminal: true }

What should I do in such situation?
How can I make sure connection was closed so I can re establish it?
Or how to make sure connection won't hang up?

@BartolomeoItaliano BartolomeoItaliano changed the title GraphQL conection hang up GraphQL conection hang up { type: 'complete' } Dec 14, 2020
@BartolomeoItaliano BartolomeoItaliano changed the title GraphQL conection hang up { type: 'complete' } GraphQL conection hang up with message: { type: 'complete' } Dec 14, 2020
@maoueh
Copy link
Contributor

maoueh commented Dec 14, 2020

The library should reconnect automatically when it encounters a complete message that has attribute terminal: true. Run with debug enables to check what is happening, like why it would not reconnect automatically.

You can run with debug logs enable by starting your script with the environment variable DEBUG="dfuse:*" set. This will show all important protocol level messages. Attach a complete log when you have reproduced the error.

Until investigation is completed, one easy thing to do it to catch the "complete" event and simply restart your stream when it happens.

@BartolomeoItaliano
Copy link
Author

BartolomeoItaliano commented Feb 22, 2021

I did as you proposed and left process fora few weeks to detect when problem occurs, these are the logs I get when connection hang up:

2020-12-24T15:21:55.751Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-0cc18a1523d99-0' to appropriate stream
Error in d fuse graphql client:
Thu, 24 Dec 2020 15:21:55 GMT
{ type: 'complete' }

2020-12-26T02:57:20.657Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-a3dc94eb99323-0' to appropriate stream
Error in d fuse graphql client:
Sat, 26 Dec 2020 02:57:20 GMT
{ type: 'complete' }

2020-12-26T10:39:12.248Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-ae219443ac1df-0' to appropriate stream
Error in d fuse graphql client:
Sat, 26 Dec 2020 10:39:12 GMT
{ type: 'complete' }

Whenever connection hangups I always receive message exactly like this, only with ID changed each time.
Do this messages helps you?

@maoueh
Copy link
Contributor

maoueh commented Feb 22, 2021

Do you have the full debug logs? What network did you connect to?

If this is a full print of the full received message, it would mean it's a server problem because this is a message that tells the stream to complete without reconnecting.

@BartolomeoItaliano
Copy link
Author

BartolomeoItaliano commented Feb 23, 2021

I enabled dfuse logs according to your sugestion. I set flag DEBUG="dfuse:*" that's complete log I received. There is nothing more printed in the console.

Connection hang ups each few hours up to few days.

@maoueh
Copy link
Contributor

maoueh commented Feb 25, 2021

Please also provide the endpoint where to connect to.

The DEBUG="dfuse:*" should be defined as an environment variable, like this for example:

# Exported then run
export DEBUG="dfuse:*"
node index.js

Or

# Inline
DEBUG="dfuse:*" node index.js 

If you got it correctly, you should see something like this:

$ DEBUG="dfuse:*" yarn run:example examples/basic/eosio/stream-transfers-graphql.ts
yarn run v1.16.0
$ yarn run ts-node -O '{"module":"commonjs"}' examples/basic/eosio/stream-transfers-graphql.ts
$ /Users/maoueh/work/dfuse/client-js/node_modules/.bin/ts-node -O '{"module":"commonjs"}' examples/basic/eosio/stream-transfers-graphql.ts
  dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment). +0ms
  dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment). +0ms
  dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment). +0ms
  dfuse:client Inferring API token store default concrete implementation to use +0ms
  ...

@BartolomeoItaliano
Copy link
Author

BartolomeoItaliano commented Mar 9, 2021

2020-12-24T10:05:22.378Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-24T10:05:22.380Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-24T10:05:22.381Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-24T10:05:22.382Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-24T10:05:22.382Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2020-12-24T10:05:22.448Z dfuse:client Retrieving latest API token via token manager
2020-12-24T10:05:22.450Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-24T17:19:58.050Z (in 26075.6 seconds)
2020-12-24T10:05:22.452Z dfuse:token-manager Returning token found in API token store since it was still valid
2020-12-24T10:05:22.453Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2020-12-24T10:05:22.453Z dfuse:socket:graphql About to connect to remote endpoint.
2020-12-24T10:05:22.454Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2020-12-24T10:05:22.454Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-24T10:05:22.473Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2020-12-24T10:05:25.693Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2020-12-24T10:05:25.693Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-24T10:05:25.694Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2020-12-24T10:05:25.694Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-24T10:05:25.696Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg4MzE3NzAsImp0aSI6ImI4ZTkwMDIwLTcxNzYtNDhiYi04NTUxLTg4NzI1ZThmZTNjMyIsImlhdCI6MTYwODc0NTM3MCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.e1BMSFiHsiBGHn-XAYnSCGVNuW6MrOn9OMC9PffM606-kJ918ec-8Q3encDD4Ay07lDRTlqcwqP86YG7fKlUOg' } } through socket.
2020-12-24T10:05:25.940Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-24T10:05:25.940Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-24T10:05:25.941Z dfuse:graphql-stream Registering stream [dc-0cc18a1523d99-0]
2020-12-24T10:05:25.943Z dfuse:socket:graphql Sending message { id: 'dc-0cc18a1523d99-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "cnSNjhny2h_80LRjAdhYsve7JZMxBVpnVg3mIBFIgt6ioXaX3pWmBWh1YEnYxKCl3EbtQlP5iNqcQiou-8YD6ITixbk37SQ8FSkkxoDs87C5KfCmbQIbebJhV-uEYIzZCjnTNg2pfOAH",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-24T10:05:25.943Z dfuse:graphql-stream Stream [dc-0cc18a1523d99-0] registered with remote endpoint.
2020-12-24T10:05:55.710Z dfuse:socket:graphql Sending keep alive pong through socket.

2020-12-24T15:21:09.192Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-24T15:21:39.222Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-24T15:21:55.751Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-0cc18a1523d99-0' to appropriate stream
Error in d fuse graphql client:
Thu, 24 Dec 2020 15:21:55 GMT
{ type: 'complete' }
 #5
2020-12-24T15:21:56.900Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-24T15:21:56.902Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-24T15:21:56.903Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-24T15:21:56.904Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-24T15:21:56.904Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2020-12-24T15:21:56.972Z dfuse:client Retrieving latest API token via token manager
2020-12-24T15:21:56.975Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-24T17:35:48.275Z (in 8031.299999999999 seconds)
2020-12-24T15:21:56.977Z dfuse:token-manager Returning token found in API token store since it was still valid
2020-12-24T15:21:56.978Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2020-12-24T15:21:56.978Z dfuse:socket:graphql About to connect to remote endpoint.
2020-12-24T15:21:56.979Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2020-12-24T15:21:56.979Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-24T15:21:56.999Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2020-12-24T15:21:57.779Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2020-12-24T15:21:57.779Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-24T15:21:57.780Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2020-12-24T15:21:57.780Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-24T15:21:57.782Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg4MzE3NzAsImp0aSI6ImI4ZTkwMDIwLTcxNzYtNDhiYi04NTUxLTg4NzI1ZThmZTNjMyIsImlhdCI6MTYwODc0NTM3MCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.e1BMSFiHsiBGHn-XAYnSCGVNuW6MrOn9OMC9PffM606-kJ918ec-8Q3encDD4Ay07lDRTlqcwqP86YG7fKlUOg' } } through socket.
2020-12-24T15:21:58.035Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-24T15:21:58.035Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-24T15:21:58.036Z dfuse:graphql-stream Registering stream [dc-4392a2fe3be47-0]
2020-12-24T15:21:58.037Z dfuse:socket:graphql Sending message { id: 'dc-4392a2fe3be47-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "cnSNjhny2h_80LRjAdhYsve7JZMxBVpnVg3mIBFIgt6ioXaX3pWmBWh1YEnYxKCl3EbtQlP5iNqcQiou-8YD6ITixbk37SQ8FSkkxoDs87C5KfCmbQIbebJhV-uEYIzZCjnTNg2pfOAH",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-24T15:21:58.038Z dfuse:graphql-stream Stream [dc-4392a2fe3be47-0] registered with remote endpoint.
2020-12-24T15:22:27.794Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-24T17:34:33.312Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-24T17:35:03.331Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-24T17:35:33.361Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-24T17:35:48.292Z dfuse:refresh-scheduler Executing scheduled job at 2020-12-24T17:35:48.291Z[Function (anonymous)]
2020-12-24T17:35:48.293Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2020-12-24T17:35:48.294Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2020-12-24T17:35:48.688Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1608831408' ], 'x-trace-id': [ '83ede056ab4ab656baeedc5584855b7e' ], date: [ 'Thu, 24 Dec 2020 17:35:48 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2020-12-24T17:35:48.689Z dfuse:http Turning response body into response result
2020-12-24T17:35:48.690Z dfuse:token-manager Retrieved an API token that is going to expires at 2020-12-25T17:35:48.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg5MTc3NDgsImp0aSI6IjY5ZDEwYzM2LTMzOTItNDY2NS04ZDE3LTY4MjcxODFiYTZhNCIsImlhdCI6MTYwODgzMTM0OCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.2rtEkaKtBF05vCRmRUYlcdYlEa6KQPC5MtKepR-T6DccqJo3QBz12EtOEzoTubHmeaVkMY7Y1SQnTVfuBFrT4g)
2020-12-24T17:35:48.690Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-25T16:23:48.690Z (in 82080 seconds)
2020-12-24T17:35:48.691Z dfuse:token-manager Storing API token into token storage
2020-12-24T17:35:48.694Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2020-12-24T17:35:48.694Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg5MTc3NDgsImp0aSI6IjY5ZDEwYzM2LTMzOTItNDY2NS04ZDE3LTY4MjcxODFiYTZhNCIsImlhdCI6MTYwODgzMTM0OCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.2rtEkaKtBF05vCRmRUYlcdYlEa6KQPC5MtKepR-T6DccqJo3QBz12EtOEzoTubHmeaVkMY7Y1SQnTVfuBFrT4g.
2020-12-24T17:36:03.376Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-24T17:36:33.405Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-24T17:37:03.435Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-25T16:23:02.152Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-25T16:23:32.172Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-25T16:23:48.708Z dfuse:refresh-scheduler Executing scheduled job at 2020-12-25T16:23:48.708Z[Function (anonymous)]
2020-12-25T16:23:48.709Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2020-12-25T16:23:48.709Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2020-12-25T16:23:49.081Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1608913488' ], 'x-trace-id': [ '5bd0b60568be4d8a9c5085bc4bf67454' ], date: [ 'Fri, 25 Dec 2020 16:23:48 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2020-12-25T16:23:49.081Z dfuse:http Turning response body into response result
2020-12-25T16:23:49.081Z dfuse:token-manager Retrieved an API token that is going to expires at 2020-12-26T16:23:48.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg5OTk4MjgsImp0aSI6IjZkMjYwOTVmLTMzYmQtNDg0MC1hOTcwLWM5OGYxNGQ2MGJiZSIsImlhdCI6MTYwODkxMzQyOCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.nD4TWtwJTsMPnQX74WcfoRxAvts1hn9DPMToOis8Ob0rCuq69Tj-QHB9roJURK0wRG9zDg4Vm7EAkD9lSjQfeg)
2020-12-25T16:23:49.082Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-26T15:11:48.132Z (in 82079.05 seconds)
2020-12-25T16:23:49.082Z dfuse:token-manager Storing API token into token storage
2020-12-25T16:23:49.083Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2020-12-25T16:23:49.083Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg5OTk4MjgsImp0aSI6IjZkMjYwOTVmLTMzYmQtNDg0MC1hOTcwLWM5OGYxNGQ2MGJiZSIsImlhdCI6MTYwODkxMzQyOCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.nD4TWtwJTsMPnQX74WcfoRxAvts1hn9DPMToOis8Ob0rCuq69Tj-QHB9roJURK0wRG9zDg4Vm7EAkD9lSjQfeg.
2020-12-25T16:24:02.176Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-25T20:03:12.500Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-25T20:03:13.815Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-4392a2fe3be47-0' to appropriate stream
Error in d fuse graphql client:
Fri, 25 Dec 2020 20:03:13 GMT
{ type: 'complete' }
 #6
2020-12-25T20:03:14.950Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-25T20:03:14.952Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-25T20:03:14.952Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-25T20:03:14.953Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-25T20:03:14.953Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2020-12-25T20:03:15.020Z dfuse:client Retrieving latest API token via token manager
2020-12-25T20:03:15.023Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-26T15:22:46.372Z (in 69571.34999999999 seconds)
2020-12-25T20:03:15.025Z dfuse:token-manager Returning token found in API token store since it was still valid
2020-12-25T20:03:15.025Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2020-12-25T20:03:15.026Z dfuse:socket:graphql About to connect to remote endpoint.
2020-12-25T20:03:15.026Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2020-12-25T20:03:15.027Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-25T20:03:15.047Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2020-12-25T20:03:16.110Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2020-12-25T20:03:16.110Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-25T20:03:16.111Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2020-12-25T20:03:16.111Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-25T20:03:16.113Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg5OTk4MjgsImp0aSI6IjZkMjYwOTVmLTMzYmQtNDg0MC1hOTcwLWM5OGYxNGQ2MGJiZSIsImlhdCI6MTYwODkxMzQyOCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.nD4TWtwJTsMPnQX74WcfoRxAvts1hn9DPMToOis8Ob0rCuq69Tj-QHB9roJURK0wRG9zDg4Vm7EAkD9lSjQfeg' } } through socket.
2020-12-25T20:03:16.358Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-25T20:03:16.359Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-25T20:03:16.359Z dfuse:graphql-stream Registering stream [dc-a3dc94eb99323-0]
2020-12-25T20:03:16.360Z dfuse:socket:graphql Sending message { id: 'dc-a3dc94eb99323-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "cnSNjhny2h_80LRjAdhYsve7JZMxBVpnVg3mIBFIgt6ioXaX3pWmBWh1YEnYxKCl3EbtQlP5iNqcQiou-8YD6ITixbk37SQ8FSkkxoDs87C5KfCmbQIbebJhV-uEYIzZCjnTNg2pfOAH",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-25T20:03:16.361Z dfuse:graphql-stream Stream [dc-a3dc94eb99323-0] registered with remote endpoint.
2020-12-25T20:03:46.120Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-25T20:04:16.150Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-25T20:04:46.160Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-25T20:05:16.190Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T02:57:02.906Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T02:57:20.657Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-a3dc94eb99323-0' to appropriate stream
Error in d fuse graphql client:
Sat, 26 Dec 2020 02:57:20 GMT
{ type: 'complete' }
 #7
2020-12-26T02:57:21.739Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-26T02:57:21.741Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-26T02:57:21.741Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-26T02:57:21.742Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-26T02:57:21.742Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2020-12-26T02:57:21.807Z dfuse:client Retrieving latest API token via token manager
2020-12-26T02:57:21.809Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-26T15:43:29.459Z (in 45967.65 seconds)
2020-12-26T02:57:21.811Z dfuse:token-manager Returning token found in API token store since it was still valid
2020-12-26T02:57:21.812Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2020-12-26T02:57:21.812Z dfuse:socket:graphql About to connect to remote endpoint.
2020-12-26T02:57:21.813Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2020-12-26T02:57:21.813Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-26T02:57:21.832Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2020-12-26T02:57:22.617Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2020-12-26T02:57:22.618Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-26T02:57:22.618Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2020-12-26T02:57:22.619Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-26T02:57:22.622Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg5OTk4MjgsImp0aSI6IjZkMjYwOTVmLTMzYmQtNDg0MC1hOTcwLWM5OGYxNGQ2MGJiZSIsImlhdCI6MTYwODkxMzQyOCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.nD4TWtwJTsMPnQX74WcfoRxAvts1hn9DPMToOis8Ob0rCuq69Tj-QHB9roJURK0wRG9zDg4Vm7EAkD9lSjQfeg' } } through socket.
2020-12-26T02:57:22.860Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-26T02:57:22.861Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-26T02:57:22.861Z dfuse:graphql-stream Registering stream [dc-ae219443ac1df-0]
2020-12-26T02:57:22.863Z dfuse:socket:graphql Sending message { id: 'dc-ae219443ac1df-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "cnSNjhny2h_80LRjAdhYsve7JZMxBVpnVg3mIBFIgt6ioXaX3pWmBWh1YEnYxKCl3EbtQlP5iNqcQiou-8YD6ITixbk37SQ8FSkkxoDs87C5KfCmbQIbebJhV-uEYIzZCjnTNg2pfOAH",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-26T02:57:22.863Z dfuse:graphql-stream Stream [dc-ae219443ac1df-0] registered with remote endpoint.
2020-12-26T02:57:52.632Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T02:58:22.662Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T02:58:52.685Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T02:59:22.715Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T10:38:11.964Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T10:38:41.994Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T10:39:11.999Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T10:39:12.248Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-ae219443ac1df-0' to appropriate stream
Error in d fuse graphql client:
Sat, 26 Dec 2020 10:39:12 GMT
{ type: 'complete' }
 #8
2020-12-26T10:39:13.385Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-26T10:39:13.387Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-26T10:39:13.388Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-26T10:39:13.388Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-26T10:39:13.389Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2020-12-26T10:39:13.459Z dfuse:client Retrieving latest API token via token manager
2020-12-26T10:39:13.462Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-26T16:06:34.712Z (in 19641.25 seconds)
2020-12-26T10:39:13.464Z dfuse:token-manager Returning token found in API token store since it was still valid
2020-12-26T10:39:13.464Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2020-12-26T10:39:13.465Z dfuse:socket:graphql About to connect to remote endpoint.
2020-12-26T10:39:13.465Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2020-12-26T10:39:13.465Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-26T10:39:13.483Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2020-12-26T10:39:14.252Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2020-12-26T10:39:14.253Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-26T10:39:14.253Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2020-12-26T10:39:14.254Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-26T10:39:14.255Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDg5OTk4MjgsImp0aSI6IjZkMjYwOTVmLTMzYmQtNDg0MC1hOTcwLWM5OGYxNGQ2MGJiZSIsImlhdCI6MTYwODkxMzQyOCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.nD4TWtwJTsMPnQX74WcfoRxAvts1hn9DPMToOis8Ob0rCuq69Tj-QHB9roJURK0wRG9zDg4Vm7EAkD9lSjQfeg' } } through socket.
2020-12-26T10:39:14.496Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-26T10:39:14.496Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-26T10:39:14.497Z dfuse:graphql-stream Registering stream [dc-c35280bafe912-0]
2020-12-26T10:39:14.498Z dfuse:socket:graphql Sending message { id: 'dc-c35280bafe912-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "cnSNjhny2h_80LRjAdhYsve7JZMxBVpnVg3mIBFIgt6ioXaX3pWmBWh1YEnYxKCl3EbtQlP5iNqcQiou-8YD6ITixbk37SQ8FSkkxoDs87C5KfCmbQIbebJhV-uEYIzZCjnTNg2pfOAH",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-26T10:39:14.499Z dfuse:graphql-stream Stream [dc-c35280bafe912-0] registered with remote endpoint.
2020-12-26T16:05:28.469Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T16:05:58.482Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T16:06:28.500Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-26T16:06:34.721Z dfuse:refresh-scheduler Executing scheduled job at 2020-12-26T16:06:34.721Z[Function (anonymous)]
2020-12-26T16:06:34.723Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2020-12-26T16:06:34.723Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2020-12-26T16:06:35.094Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1608998854' ], 'x-trace-id': [ '6bad88e5143943d5d2332f0e2920d775' ], date: [ 'Sat, 26 Dec 2020 16:06:34 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2020-12-26T16:06:35.095Z dfuse:http Turning response body into response result
2020-12-26T16:06:35.096Z dfuse:token-manager Retrieved an API token that is going to expires at 2020-12-27T16:06:34.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkwODUxOTQsImp0aSI6IjQzMDAzY2JkLWRlYjctNDAyMi1hYTI0LTI2YmI3OGNmNWZmZCIsImlhdCI6MTYwODk5ODc5NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.SraEhrJ0GTqdwidlqOuKiRJAph2wWfFW5wVy8WkbDoBRvYWD3Ou97fRW_f4WPxoyZ-htlNgqCiu5BpWR2dbOEg)
2020-12-26T16:06:35.096Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-27T14:54:34.146Z (in 82079.05 seconds)
2020-12-26T16:06:35.096Z dfuse:token-manager Storing API token into token storage
2020-12-26T16:06:35.099Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2020-12-26T16:06:35.100Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkwODUxOTQsImp0aSI6IjQzMDAzY2JkLWRlYjctNDAyMi1hYTI0LTI2YmI3OGNmNWZmZCIsImlhdCI6MTYwODk5ODc5NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.SraEhrJ0GTqdwidlqOuKiRJAph2wWfFW5wVy8WkbDoBRvYWD3Ou97fRW_f4WPxoyZ-htlNgqCiu5BpWR2dbOEg.
2020-12-26T16:06:58.523Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-27T14:53:00.138Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-27T14:53:30.152Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-27T14:54:00.182Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-27T14:54:30.212Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-27T14:54:34.150Z dfuse:refresh-scheduler Executing scheduled job at 2020-12-27T14:54:34.150Z[Function (anonymous)]
2020-12-27T14:54:34.150Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2020-12-27T14:54:34.151Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2020-12-27T14:54:34.808Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609080934' ], 'x-trace-id': [ '71f206eba3a9050cd3d4cf5bc503c907' ], date: [ 'Sun, 27 Dec 2020 14:54:34 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2020-12-27T14:54:34.808Z dfuse:http Turning response body into response result
2020-12-27T14:54:34.808Z dfuse:token-manager Retrieved an API token that is going to expires at 2020-12-28T14:54:34.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkxNjcyNzQsImp0aSI6IjMwZTc4MjRlLWNiOTctNDE1Zi1hMDNhLTkwYTVkNDhlZmVkMSIsImlhdCI6MTYwOTA4MDg3NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.qwXR3r9NEsb6TnZP2jmzwjy8TsdaeEMGH1nVWcqlkkv1zRJHLdWfnRjRq5SJl5lKKijiVIpKz-L4AqAuxomCfg)
2020-12-27T14:54:34.809Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-28T13:42:34.809Z (in 82080 seconds)
2020-12-27T14:54:34.809Z dfuse:token-manager Storing API token into token storage
2020-12-27T14:54:34.810Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2020-12-27T14:54:34.810Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkxNjcyNzQsImp0aSI6IjMwZTc4MjRlLWNiOTctNDE1Zi1hMDNhLTkwYTVkNDhlZmVkMSIsImlhdCI6MTYwOTA4MDg3NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.qwXR3r9NEsb6TnZP2jmzwjy8TsdaeEMGH1nVWcqlkkv1zRJHLdWfnRjRq5SJl5lKKijiVIpKz-L4AqAuxomCfg.
2020-12-27T14:55:00.224Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-27T14:55:30.254Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-28T13:42:29.551Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-28T13:42:34.812Z dfuse:refresh-scheduler Executing scheduled job at 2020-12-28T13:42:34.812Z[Function (anonymous)]
2020-12-28T13:42:34.812Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2020-12-28T13:42:34.812Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2020-12-28T13:42:35.196Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609163015' ], 'x-trace-id': [ '7f8ef5b53df50d057c17a992c218ae21' ], date: [ 'Mon, 28 Dec 2020 13:42:35 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2020-12-28T13:42:35.196Z dfuse:http Turning response body into response result
2020-12-28T13:42:35.204Z dfuse:token-manager Retrieved an API token that is going to expires at 2020-12-29T13:42:35.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkyNDkzNTUsImp0aSI6ImMyZmI3OGIwLWIyMDMtNGZjYy05MzdmLWE5MjQ3OWE2ODEyNSIsImlhdCI6MTYwOTE2Mjk1NSwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.cSWbQ8-Vk18sUiT2jYsxNwe7_XLrw7iUK6foEMieuOAG1Gskp8fnR6ilAi8OfECbzNVNsfq7BKzgIIVN48MH5g)
2020-12-28T13:42:35.204Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-29T12:30:35.204Z (in 82080 seconds)
2020-12-28T13:42:35.204Z dfuse:token-manager Storing API token into token storage
2020-12-28T13:42:35.205Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2020-12-28T13:42:35.205Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkyNDkzNTUsImp0aSI6ImMyZmI3OGIwLWIyMDMtNGZjYy05MzdmLWE5MjQ3OWE2ODEyNSIsImlhdCI6MTYwOTE2Mjk1NSwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.cSWbQ8-Vk18sUiT2jYsxNwe7_XLrw7iUK6foEMieuOAG1Gskp8fnR6ilAi8OfECbzNVNsfq7BKzgIIVN48MH5g.
2020-12-28T13:42:59.552Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-28T13:43:29.582Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-28T15:18:34.028Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-28T15:18:35.764Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-c35280bafe912-0' to appropriate stream
Error in d fuse graphql client:
Mon, 28 Dec 2020 15:18:35 GMT
{ type: 'complete' }
 #9
2020-12-28T15:18:36.947Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-28T15:18:36.948Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-28T15:18:36.949Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-28T15:18:36.950Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-28T15:18:36.950Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2020-12-28T15:18:37.023Z dfuse:client Retrieving latest API token via token manager
2020-12-28T15:18:37.026Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-29T12:35:23.126Z (in 76606.09999999999 seconds)
2020-12-28T15:18:37.028Z dfuse:token-manager Returning token found in API token store since it was still valid
2020-12-28T15:18:37.028Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2020-12-28T15:18:37.029Z dfuse:socket:graphql About to connect to remote endpoint.
2020-12-28T15:18:37.029Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2020-12-28T15:18:37.029Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-28T15:18:37.049Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2020-12-28T15:18:37.813Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2020-12-28T15:18:37.813Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-28T15:18:37.814Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2020-12-28T15:18:37.814Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-28T15:18:37.817Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkyNDkzNTUsImp0aSI6ImMyZmI3OGIwLWIyMDMtNGZjYy05MzdmLWE5MjQ3OWE2ODEyNSIsImlhdCI6MTYwOTE2Mjk1NSwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.cSWbQ8-Vk18sUiT2jYsxNwe7_XLrw7iUK6foEMieuOAG1Gskp8fnR6ilAi8OfECbzNVNsfq7BKzgIIVN48MH5g' } } through socket.
2020-12-28T15:18:38.058Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-28T15:18:38.058Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-28T15:18:38.059Z dfuse:graphql-stream Registering stream [dc-035b6a7484b64-0]
2020-12-28T15:18:38.060Z dfuse:socket:graphql Sending message { id: 'dc-035b6a7484b64-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "cnSNjhny2h_80LRjAdhYsve7JZMxBVpnVg3mIBFIgt6ioXaX3pWmBWh1YEnYxKCl3EbtQlP5iNqcQiou-8YD6ITixbk37SQ8FSkkxoDs87C5KfCmbQIbebJhV-uEYIzZCjnTNg2pfOAH",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-28T15:18:38.061Z dfuse:graphql-stream Stream [dc-035b6a7484b64-0] registered with remote endpoint.
2020-12-28T15:18:42.888Z dfuse:graphql-stream Routing socket message of type 'error' with id 'dc-035b6a7484b64-0' to appropriate stream
Error in d fuse graphql client:
Mon, 28 Dec 2020 15:18:42 GMT
{
  type: 'error',
  errors: [
    {
      message: 'graphql: hammer search result: rpc error: code = Unknown desc = Internal server error (trace_id: be14edd24572d25b81a9d9677379c78a)'
    }
  ],
  terminal: true
}
2020-12-28T15:18:42.891Z dfuse:graphql-stream Stream [dc-035b6a7484b64-0] received error message and auto restart on error set, waiting [2500 ms] before restarting
2020-12-28T15:18:45.392Z dfuse:graphql-stream About to restart stream [dc-035b6a7484b64-0]
2020-12-28T15:18:45.393Z dfuse:socket:graphql Sending message { id: 'dc-035b6a7484b64-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "cnSNjhny2h_80LRjAdhYsve7JZMxBVpnVg3mIBFIgt6ioXaX3pWmBWh1YEnYxKCl3EbtQlP5iNqcQiou-8YD6ITixbk37SQ8FSkkxoDs87C5KfCmbQIbebJhV-uEYIzZCjnTNg2pfOAH",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-28T15:18:48.898Z dfuse:graphql-stream Routing socket message of type 'error' with id 'dc-035b6a7484b64-0' to appropriate stream
Error in d fuse graphql client:
Mon, 28 Dec 2020 15:18:48 GMT
{
  type: 'error',
  errors: [
    {
      message: 'graphql: hammer search result: rpc error: code = Unknown desc = Internal server error (trace_id: a2e0b380d8a043addc5bc0701bfaf146)'
    }
  ],
  terminal: true
}
2020-12-28T15:18:48.899Z dfuse:graphql-stream Stream [dc-035b6a7484b64-0] received error message and auto restart on error set, waiting [2500 ms] before restarting
2020-12-28T15:18:51.403Z dfuse:graphql-stream About to restart stream [dc-035b6a7484b64-0]
2020-12-28T15:18:51.403Z dfuse:socket:graphql Sending message { id: 'dc-035b6a7484b64-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "cnSNjhny2h_80LRjAdhYsve7JZMxBVpnVg3mIBFIgt6ioXaX3pWmBWh1YEnYxKCl3EbtQlP5iNqcQiou-8YD6ITixbk37SQ8FSkkxoDs87C5KfCmbQIbebJhV-uEYIzZCjnTNg2pfOAH",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-28T15:19:07.828Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-29T08:07:26.898Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-29T08:07:26.898Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-29T08:07:26.898Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-29T08:07:26.899Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-29T08:07:26.899Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).
2020-12-29T08:07:51.950Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-29T08:08:21.950Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-29T12:35:03.001Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-29T12:35:23.142Z dfuse:refresh-scheduler Executing scheduled job at 2020-12-29T12:35:23.142Z[Function (anonymous)]
2020-12-29T12:35:23.144Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2020-12-29T12:35:23.144Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2020-12-29T12:35:23.576Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609245383' ], 'x-trace-id': [ 'f31e559cc766a87de5e93187a3bf1705' ], date: [ 'Tue, 29 Dec 2020 12:35:23 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2020-12-29T12:35:23.577Z dfuse:http Turning response body into response result
2020-12-29T12:35:23.577Z dfuse:token-manager Retrieved an API token that is going to expires at 2020-12-30T12:35:23.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkzMzE3MjMsImp0aSI6ImNmNmQ1YjhlLTFkYmQtNDU1MC1iZGM2LTQ3NjAyNTY1OWZiYiIsImlhdCI6MTYwOTI0NTMyMywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.w9s6HaD3IQGXaDQNClJW1P5Wrcj1aDbrBR_xFVaO8016NNVYWV6a-EPxFk_I4t5skRUxXknDnfHUkMhlLiXkRA)
2020-12-29T12:35:23.577Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-30T11:23:23.577Z (in 82080 seconds)
2020-12-29T12:35:23.578Z dfuse:token-manager Storing API token into token storage
2020-12-29T12:35:23.580Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2020-12-29T12:35:23.580Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkzMzE3MjMsImp0aSI6ImNmNmQ1YjhlLTFkYmQtNDU1MC1iZGM2LTQ3NjAyNTY1OWZiYiIsImlhdCI6MTYwOTI0NTMyMywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.w9s6HaD3IQGXaDQNClJW1P5Wrcj1aDbrBR_xFVaO8016NNVYWV6a-EPxFk_I4t5skRUxXknDnfHUkMhlLiXkRA.
2020-12-29T12:35:33.010Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-30T07:16:40.987Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-035b6a7484b64-0' to appropriate stream
Error in d fuse graphql client:
Wed, 30 Dec 2020 07:16:40 GMT
{ type: 'complete' }
 #10
2020-12-30T07:16:42.140Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-30T07:16:42.142Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-30T07:16:42.143Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-30T07:16:42.143Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-30T07:16:42.143Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2020-12-30T07:16:42.210Z dfuse:client Retrieving latest API token via token manager
2020-12-30T07:16:42.213Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-30T12:19:27.162Z (in 18164.95 seconds)
2020-12-30T07:16:42.214Z dfuse:token-manager Returning token found in API token store since it was still valid
2020-12-30T07:16:42.215Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2020-12-30T07:16:42.215Z dfuse:socket:graphql About to connect to remote endpoint.
2020-12-30T07:16:42.216Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2020-12-30T07:16:42.216Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-30T07:16:42.235Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2020-12-30T07:16:43.073Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2020-12-30T07:16:43.073Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-30T07:16:43.074Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2020-12-30T07:16:43.074Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-30T07:16:43.077Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDkzMzE3MjMsImp0aSI6ImNmNmQ1YjhlLTFkYmQtNDU1MC1iZGM2LTQ3NjAyNTY1OWZiYiIsImlhdCI6MTYwOTI0NTMyMywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.w9s6HaD3IQGXaDQNClJW1P5Wrcj1aDbrBR_xFVaO8016NNVYWV6a-EPxFk_I4t5skRUxXknDnfHUkMhlLiXkRA' } } through socket.
2020-12-30T07:16:43.319Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-30T07:16:43.320Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-30T07:16:43.320Z dfuse:graphql-stream Registering stream [dc-b39518337ad6e-0]
2020-12-30T07:16:43.322Z dfuse:socket:graphql Sending message { id: 'dc-b39518337ad6e-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "245ocw6eBe3rQt1DSTN7__e7JZA4B1xvXA_tIBFIjdmioyDBiJ30Ajd3PkyBxa2ljxPpQ1r43duZRXt_98hStYPoxbBmvHI-RXMuk4zsqrPsLfXwPAISduljWrmEZ4reCDjeY1zyL7QD",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-30T07:16:43.323Z dfuse:graphql-stream Stream [dc-b39518337ad6e-0] registered with remote endpoint.
2020-12-30T07:17:13.088Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-30T07:17:43.100Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-30T11:18:57.748Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-30T11:18:57.748Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-30T11:18:57.748Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-30T11:18:57.749Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-30T11:18:57.749Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).
2020-12-30T11:19:23.414Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-30T12:19:24.500Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-30T12:19:27.168Z dfuse:refresh-scheduler Executing scheduled job at 2020-12-30T12:19:27.167Z[Function (anonymous)]
2020-12-30T12:19:27.170Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2020-12-30T12:19:27.171Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2020-12-30T12:19:27.573Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609330827' ], 'x-trace-id': [ '81bddba2d900abf306ba38074020b0c1' ], date: [ 'Wed, 30 Dec 2020 12:19:27 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2020-12-30T12:19:27.573Z dfuse:http Turning response body into response result
2020-12-30T12:19:27.574Z dfuse:token-manager Retrieved an API token that is going to expires at 2020-12-31T12:19:27.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk0MTcxNjcsImp0aSI6ImRkM2I5NTFkLTVmYTktNDI0MC04ODFkLTg5NmMxMmM4MzM3ZSIsImlhdCI6MTYwOTMzMDc2NywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.JmkiwTIc7c60kTMaABDjixRctB6CaChYBAdvmsnkR_u-YpoonwGLkXokzKyQp7UJRgu771d5y0oqlDqNwazBPQ)
2020-12-30T12:19:27.574Z dfuse:token-manager Scheduling next token refresh to occur at 2020-12-31T11:07:27.574Z (in 82080 seconds)
2020-12-30T12:19:27.574Z dfuse:token-manager Storing API token into token storage
2020-12-30T12:19:27.577Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2020-12-30T12:19:27.577Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk0MTcxNjcsImp0aSI6ImRkM2I5NTFkLTVmYTktNDI0MC04ODFkLTg5NmMxMmM4MzM3ZSIsImlhdCI6MTYwOTMzMDc2NywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.JmkiwTIc7c60kTMaABDjixRctB6CaChYBAdvmsnkR_u-YpoonwGLkXokzKyQp7UJRgu771d5y0oqlDqNwazBPQ.

2020-12-31T11:07:27.578Z dfuse:refresh-scheduler Executing scheduled job at 2020-12-31T11:07:27.578Z[Function (anonymous)]
2020-12-31T11:07:27.579Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2020-12-31T11:07:27.579Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2020-12-31T11:07:27.980Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609412907' ], 'x-trace-id': [ '936af0ab2de6cc55f32a5354f1c7edbc' ], date: [ 'Thu, 31 Dec 2020 11:07:27 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2020-12-31T11:07:27.980Z dfuse:http Turning response body into response result
2020-12-31T11:07:27.980Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-01T11:07:27.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk0OTkyNDcsImp0aSI6ImU0YmFiZmJkLTY5MDEtNDZmZS1hNjVkLTdiZTc5NGQyOTEzNCIsImlhdCI6MTYwOTQxMjg0NywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.IEtD0ypyvCA36hQVxeA8M5Ebz6jTqlyK2BDN34P2cFy92_s4zRASNNWgfaVlxrxZfmOQNg4ucRl_gDO-L-gNZg)
2020-12-31T11:07:27.981Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-01T09:55:27.981Z (in 82080 seconds)
2020-12-31T11:07:27.981Z dfuse:token-manager Storing API token into token storage
2020-12-31T11:07:27.982Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2020-12-31T11:07:27.982Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk0OTkyNDcsImp0aSI6ImU0YmFiZmJkLTY5MDEtNDZmZS1hNjVkLTdiZTc5NGQyOTEzNCIsImlhdCI6MTYwOTQxMjg0NywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.IEtD0ypyvCA36hQVxeA8M5Ebz6jTqlyK2BDN34P2cFy92_s4zRASNNWgfaVlxrxZfmOQNg4ucRl_gDO-L-gNZg.
2020-12-31T11:07:53.120Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-31T14:58:32.682Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-31T14:59:02.711Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-31T14:59:19.430Z dfuse:socket:graphql Received `onclose` (via connect) notification from socket.
2020-12-31T14:59:19.431Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-31T14:59:19.432Z dfuse:socket:graphql Sending a `onClose` (1006) notification to client consumer (via connect).
2020-12-31T14:59:19.432Z dfuse:socket:graphql Socket has close abnormally (via connect), trying to re-connect to socket (infinite retry).
2020-12-31T14:59:19.432Z dfuse:socket:graphql Reconnect has been invoked, perfoming initial re-connection logic.
2020-12-31T14:59:19.432Z dfuse:socket:graphql Waiting 2500ms before trying to perform the re-connection.
2020-12-31T14:59:21.936Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-31T14:59:22.880Z dfuse:socket:graphql Received `onopen` (via reconnect) notification from socket with ready state 1.
2020-12-31T14:59:22.880Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-31T14:59:22.880Z dfuse:socket:graphql Signaling completion of `reconnect` method in the outer scope.
2020-12-31T14:59:22.881Z dfuse:socket:graphql Sending a `onReconnect` notification to client consumer.
2020-12-31T14:59:22.881Z dfuse:graphql-stream Handling re-connection notification from socket.
2020-12-31T14:59:22.881Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-31T14:59:22.882Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk0OTkyNDcsImp0aSI6ImU0YmFiZmJkLTY5MDEtNDZmZS1hNjVkLTdiZTc5NGQyOTEzNCIsImlhdCI6MTYwOTQxMjg0NywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.IEtD0ypyvCA36hQVxeA8M5Ebz6jTqlyK2BDN34P2cFy92_s4zRASNNWgfaVlxrxZfmOQNg4ucRl_gDO-L-gNZg' } } through socket.
2020-12-31T14:59:23.126Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-31T14:59:23.127Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-31T14:59:23.127Z dfuse:graphql-stream About to restart stream [dc-b39518337ad6e-0]
2020-12-31T14:59:23.129Z dfuse:socket:graphql Sending message { id: 'dc-b39518337ad6e-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "245ocw6eBe3rQt1DSTN7__e7JZA4B1xvXA_tIBFIjdmioyDBiJ30Ajd3PkyBxa2ljxPpQ1r43duZRXt_98hStYPoxbBmvHI-RXMuk4zsqrPsLfXwPAISduljWrmEZ4reCDjeY1zyL7QD",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-31T14:59:52.898Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-31T15:00:22.925Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-31T21:29:40.238Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-31T21:30:01.942Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-b39518337ad6e-0' to appropriate stream
Error in d fuse graphql client:
Thu, 31 Dec 2020 21:30:01 GMT
{ type: 'complete' }
 #11
2020-12-31T21:30:03.685Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2020-12-31T21:30:03.687Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-31T21:30:03.688Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2020-12-31T21:30:03.689Z dfuse:client Inferring API token store default concrete implementation to use
2020-12-31T21:30:03.689Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2020-12-31T21:30:03.766Z dfuse:client Retrieving latest API token via token manager
2020-12-31T21:30:03.769Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-01T10:26:35.569Z (in 46591.799999999996 seconds)
2020-12-31T21:30:03.771Z dfuse:token-manager Returning token found in API token store since it was still valid
2020-12-31T21:30:03.772Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2020-12-31T21:30:03.773Z dfuse:socket:graphql About to connect to remote endpoint.
2020-12-31T21:30:03.773Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2020-12-31T21:30:03.773Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2020-12-31T21:30:03.794Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2020-12-31T21:30:04.562Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2020-12-31T21:30:04.563Z dfuse:socket:graphql Unregistering keep alive interval
2020-12-31T21:30:04.563Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2020-12-31T21:30:04.564Z dfuse:graphql-stream Initiating graphql stream connection
2020-12-31T21:30:04.567Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk0OTkyNDcsImp0aSI6ImU0YmFiZmJkLTY5MDEtNDZmZS1hNjVkLTdiZTc5NGQyOTEzNCIsImlhdCI6MTYwOTQxMjg0NywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.IEtD0ypyvCA36hQVxeA8M5Ebz6jTqlyK2BDN34P2cFy92_s4zRASNNWgfaVlxrxZfmOQNg4ucRl_gDO-L-gNZg' } } through socket.
2020-12-31T21:30:04.806Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2020-12-31T21:30:04.807Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2020-12-31T21:30:04.807Z dfuse:graphql-stream Registering stream [dc-f20d0fee316a5-0]
2020-12-31T21:30:04.808Z dfuse:socket:graphql Sending message { id: 'dc-f20d0fee316a5-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "hbroQnpbaibse3kcUVt5TPe7JZA4BV9oUQjmIBsQh4z_oSTHjM_zBzQ=",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2020-12-31T21:30:04.809Z dfuse:graphql-stream Stream [dc-f20d0fee316a5-0] registered with remote endpoint.
2020-12-31T21:30:34.570Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-31T21:31:04.573Z dfuse:socket:graphql Sending keep alive pong through socket.
2020-12-31T21:31:34.574Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-01T04:45:22.566Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-01T04:45:40.032Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-f20d0fee316a5-0' to appropriate stream
Error in d fuse graphql client:
Fri, 01 Jan 2021 04:45:40 GMT
{ type: 'complete' }

2021-01-01T04:45:41.165Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2021-01-01T04:45:41.166Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2021-01-01T04:45:41.167Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2021-01-01T04:45:41.167Z dfuse:client Inferring API token store default concrete implementation to use
2021-01-01T04:45:41.168Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2021-01-01T04:45:41.232Z dfuse:client Retrieving latest API token via token manager
2021-01-01T04:45:41.234Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-01T10:48:21.934Z (in 21760.7 seconds)
2021-01-01T04:45:41.236Z dfuse:token-manager Returning token found in API token store since it was still valid
2021-01-01T04:45:41.237Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2021-01-01T04:45:41.237Z dfuse:socket:graphql About to connect to remote endpoint.
2021-01-01T04:45:41.237Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2021-01-01T04:45:41.238Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2021-01-01T04:45:41.256Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2021-01-01T04:45:42.027Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2021-01-01T04:45:42.028Z dfuse:socket:graphql Unregistering keep alive interval
2021-01-01T04:45:42.028Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2021-01-01T04:45:42.029Z dfuse:graphql-stream Initiating graphql stream connection
2021-01-01T04:45:42.031Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk0OTkyNDcsImp0aSI6ImU0YmFiZmJkLTY5MDEtNDZmZS1hNjVkLTdiZTc5NGQyOTEzNCIsImlhdCI6MTYwOTQxMjg0NywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.IEtD0ypyvCA36hQVxeA8M5Ebz6jTqlyK2BDN34P2cFy92_s4zRASNNWgfaVlxrxZfmOQNg4ucRl_gDO-L-gNZg' } } through socket.
2021-01-01T04:45:42.265Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2021-01-01T04:45:42.265Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2021-01-01T04:45:42.266Z dfuse:graphql-stream Registering stream [dc-d5fccefa17633-0]
2021-01-01T04:45:42.267Z dfuse:socket:graphql Sending message { id: 'dc-d5fccefa17633-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "hbroQnpbaibse3kcUVt5TPe7JZA4BV9oUQjmIBsQh4z_oSTHjM_zBzQ=",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2021-01-01T04:45:42.267Z dfuse:graphql-stream Stream [dc-d5fccefa17633-0] registered with remote endpoint.
2021-01-01T04:46:12.042Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-01T04:46:42.072Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-01T04:47:12.083Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-01T10:47:58.154Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-01T10:48:21.951Z dfuse:refresh-scheduler Executing scheduled job at 2021-01-01T10:48:21.951Z[Function (anonymous)]
2021-01-01T10:48:21.953Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2021-01-01T10:48:21.954Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2021-01-01T10:48:22.321Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609498162' ], 'x-trace-id': [ '780e6b24874100369ebe68a4c91faaf9' ], date: [ 'Fri, 01 Jan 2021 10:48:22 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2021-01-01T10:48:22.321Z dfuse:http Turning response body into response result
2021-01-01T10:48:22.322Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-02T10:48:22.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk1ODQ1MDIsImp0aSI6ImJiODVlZmY2LTg0ZTMtNGQwNS1hNmJkLWUyNjc0NWIzZWUyNSIsImlhdCI6MTYwOTQ5ODEwMiwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.l_R3eOneaS-TRcVfMKhXuH9PnQ_-ts6dDAMmmRYZ7SlaJ8efIEfijBNFIQXGEP405XngAYYuIV_STk5U68OrbQ)
2021-01-01T10:48:22.323Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-02T09:36:22.323Z (in 82080 seconds)
2021-01-01T10:48:22.323Z dfuse:token-manager Storing API token into token storage
2021-01-01T10:48:22.326Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2021-01-01T10:48:22.326Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk1ODQ1MDIsImp0aSI6ImJiODVlZmY2LTg0ZTMtNGQwNS1hNmJkLWUyNjc0NWIzZWUyNSIsImlhdCI6MTYwOTQ5ODEwMiwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.l_R3eOneaS-TRcVfMKhXuH9PnQ_-ts6dDAMmmRYZ7SlaJ8efIEfijBNFIQXGEP405XngAYYuIV_STk5U68OrbQ.
2021-01-01T10:48:28.156Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-01T10:48:58.172Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-02T09:35:27.952Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-02T09:35:57.968Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-02T09:36:22.347Z dfuse:refresh-scheduler Executing scheduled job at 2021-01-02T09:36:22.347Z[Function (anonymous)]
2021-01-02T09:36:22.348Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2021-01-02T09:36:22.348Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2021-01-02T09:36:22.709Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609580242' ], 'x-trace-id': [ 'b47301ea9ec72af422b09ec6989cff5a' ], date: [ 'Sat, 02 Jan 2021 09:36:22 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2021-01-02T09:36:22.709Z dfuse:http Turning response body into response result
2021-01-02T09:36:22.709Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-03T09:36:22.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk2NjY1ODIsImp0aSI6IjgyZDU3Mjk3LTdjOGYtNGU2ZS1hNjA0LTk2MDVkMzgwMTE4YyIsImlhdCI6MTYwOTU4MDE4MiwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.aZYc5_y1VOOoLzQ8US5rVrEuf2iS-HEF2fN0Z4ybuQnqgBK5SAD4c4AxRJBAncogRPnnRAW7OLgTb-bWWgNN7Q)
2021-01-02T09:36:22.709Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-03T08:24:22.709Z (in 82080 seconds)
2021-01-02T09:36:22.710Z dfuse:token-manager Storing API token into token storage
2021-01-02T09:36:22.711Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2021-01-02T09:36:22.711Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk2NjY1ODIsImp0aSI6IjgyZDU3Mjk3LTdjOGYtNGU2ZS1hNjA0LTk2MDVkMzgwMTE4YyIsImlhdCI6MTYwOTU4MDE4MiwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.aZYc5_y1VOOoLzQ8US5rVrEuf2iS-HEF2fN0Z4ybuQnqgBK5SAD4c4AxRJBAncogRPnnRAW7OLgTb-bWWgNN7Q.
2021-01-02T09:36:27.973Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-03T08:23:58.152Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-03T08:24:22.735Z dfuse:refresh-scheduler Executing scheduled job at 2021-01-03T08:24:22.735Z[Function (anonymous)]
2021-01-03T08:24:22.735Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2021-01-03T08:24:22.736Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2021-01-03T08:24:23.149Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609662323' ], 'x-trace-id': [ 'a8fa0d699733798b0644368cdf42cc90' ], date: [ 'Sun, 03 Jan 2021 08:24:23 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2021-01-03T08:24:23.150Z dfuse:http Turning response body into response result
2021-01-03T08:24:23.156Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-04T08:24:23.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk3NDg2NjMsImp0aSI6IjBjMTc5ODEyLTgzN2MtNDdiOC1iMDM3LTA2NDEyMmMzNWUwNCIsImlhdCI6MTYwOTY2MjI2MywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.DAacq3lOdvTozieDiXi362WZRK6XTp9AbxdgT2jnFRJoaCpJ2Tl8Rl9RmZSnRLaDDRF-C52HAbE2kSguuJ5xXA)
2021-01-03T08:24:23.157Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-04T07:12:23.156Z (in 82080 seconds)
2021-01-03T08:24:23.157Z dfuse:token-manager Storing API token into token storage
2021-01-03T08:24:23.163Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2021-01-03T08:24:23.163Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk3NDg2NjMsImp0aSI6IjBjMTc5ODEyLTgzN2MtNDdiOC1iMDM3LTA2NDEyMmMzNWUwNCIsImlhdCI6MTYwOTY2MjI2MywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.DAacq3lOdvTozieDiXi362WZRK6XTp9AbxdgT2jnFRJoaCpJ2Tl8Rl9RmZSnRLaDDRF-C52HAbE2kSguuJ5xXA.
2021-01-03T08:24:28.157Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-03T08:24:58.187Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-03T18:30:54.540Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-03T18:31:08.117Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-d5fccefa17633-0' to appropriate stream
Error in d fuse graphql client:
Sun, 03 Jan 2021 18:31:08 GMT
{ type: 'complete' }
 #13
2021-01-03T18:31:09.320Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2021-01-03T18:31:09.322Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2021-01-03T18:31:09.322Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2021-01-03T18:31:09.323Z dfuse:client Inferring API token store default concrete implementation to use
2021-01-03T18:31:09.323Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).

2021-01-03T18:31:09.389Z dfuse:client Retrieving latest API token via token manager
2021-01-03T18:31:09.392Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-04T07:42:43.692Z (in 47494.299999999996 seconds)
2021-01-03T18:31:09.394Z dfuse:token-manager Returning token found in API token store since it was still valid
2021-01-03T18:31:09.394Z dfuse:graphql-stream Socket is not connected, connecting socket first.
2021-01-03T18:31:09.395Z dfuse:socket:graphql About to connect to remote endpoint.
2021-01-03T18:31:09.395Z dfuse:socket:graphql Connection promise started, creating and opening socket.
2021-01-03T18:31:09.396Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2021-01-03T18:31:09.415Z dfuse:socket:graphql Connection to remote endpoint in-progress, returning promise to caller.
2021-01-03T18:31:10.174Z dfuse:socket:graphql Received `onopen` (via connect) notification from socket.
2021-01-03T18:31:10.174Z dfuse:socket:graphql Unregistering keep alive interval
2021-01-03T18:31:10.174Z dfuse:socket:graphql Signaling completion of `connect` method in the outer scope.
2021-01-03T18:31:10.175Z dfuse:graphql-stream Initiating graphql stream connection
2021-01-03T18:31:10.177Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk3NDg2NjMsImp0aSI6IjBjMTc5ODEyLTgzN2MtNDdiOC1iMDM3LTA2NDEyMmMzNWUwNCIsImlhdCI6MTYwOTY2MjI2MywiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.DAacq3lOdvTozieDiXi362WZRK6XTp9AbxdgT2jnFRJoaCpJ2Tl8Rl9RmZSnRLaDDRF-C52HAbE2kSguuJ5xXA' } } through socket.
2021-01-03T18:31:10.414Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2021-01-03T18:31:10.414Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2021-01-03T18:31:10.414Z dfuse:graphql-stream Registering stream [dc-81ec0b8b41427-0]
2021-01-03T18:31:10.416Z dfuse:socket:graphql Sending message { id: 'dc-81ec0b8b41427-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "hbroQnpbaibse3kcUVt5TPe7JZA4BV9oUQjmIBsQh4z_oSTHjM_zBzQ=",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2021-01-03T18:31:10.416Z dfuse:graphql-stream Stream [dc-81ec0b8b41427-0] registered with remote endpoint.
2021-01-03T18:31:40.180Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-03T18:32:10.201Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T07:42:14.556Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T07:42:43.700Z dfuse:refresh-scheduler Executing scheduled job at 2021-01-04T07:42:43.699Z[Function (anonymous)]
2021-01-04T07:42:43.702Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2021-01-04T07:42:43.702Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2021-01-04T07:42:44.206Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609746224' ], 'x-trace-id': [ '26f0d919722387aa7ad969608727d023' ], date: [ 'Mon, 04 Jan 2021 07:42:44 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2021-01-04T07:42:44.207Z dfuse:http Turning response body into response result
2021-01-04T07:42:44.208Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-05T07:42:44.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk4MzI1NjQsImp0aSI6IjU2M2E0MjNjLTg4NjEtNGIwZC1iZjJlLWNhODhiNzMxMjVlMiIsImlhdCI6MTYwOTc0NjE2NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.tyzq2stkGTtyMRXjAxvcqlbGYX-TbCaOG7xE6FC0HZezpi4yVl762irCWDoS5yKd6D8QJ-aQU9LwtIEHZ1WAZw)
2021-01-04T07:42:44.209Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-05T06:30:44.209Z (in 82080 seconds)
2021-01-04T07:42:44.209Z dfuse:token-manager Storing API token into token storage
2021-01-04T07:42:44.213Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2021-01-04T07:42:44.214Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk4MzI1NjQsImp0aSI6IjU2M2E0MjNjLTg4NjEtNGIwZC1iZjJlLWNhODhiNzMxMjVlMiIsImlhdCI6MTYwOTc0NjE2NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.tyzq2stkGTtyMRXjAxvcqlbGYX-TbCaOG7xE6FC0HZezpi4yVl762irCWDoS5yKd6D8QJ-aQU9LwtIEHZ1WAZw.
2021-01-04T07:42:44.556Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T19:57:20.582Z dfuse:socket:graphql Received `onclose` (via connect) notification from socket.
2021-01-04T19:57:20.583Z dfuse:socket:graphql Unregistering keep alive interval
2021-01-04T19:57:20.583Z dfuse:socket:graphql Sending a `onClose` (1006) notification to client consumer (via connect).
2021-01-04T19:57:20.583Z dfuse:socket:graphql Socket has close abnormally (via connect), trying to re-connect to socket (infinite retry).
2021-01-04T19:57:20.584Z dfuse:socket:graphql Reconnect has been invoked, perfoming initial re-connection logic.
2021-01-04T19:57:20.584Z dfuse:socket:graphql Waiting 2500ms before trying to perform the re-connection.
2021-01-04T19:57:23.087Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2021-01-04T19:57:23.911Z dfuse:socket:graphql Received `onopen` (via reconnect) notification from socket with ready state 1.
2021-01-04T19:57:23.912Z dfuse:socket:graphql Unregistering keep alive interval
2021-01-04T19:57:23.912Z dfuse:socket:graphql Signaling completion of `reconnect` method in the outer scope.
2021-01-04T19:57:23.912Z dfuse:socket:graphql Sending a `onReconnect` notification to client consumer.
2021-01-04T19:57:23.912Z dfuse:graphql-stream Handling re-connection notification from socket.
2021-01-04T19:57:23.913Z dfuse:graphql-stream Initiating graphql stream connection
2021-01-04T19:57:23.913Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk4MzI1NjQsImp0aSI6IjU2M2E0MjNjLTg4NjEtNGIwZC1iZjJlLWNhODhiNzMxMjVlMiIsImlhdCI6MTYwOTc0NjE2NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.tyzq2stkGTtyMRXjAxvcqlbGYX-TbCaOG7xE6FC0HZezpi4yVl762irCWDoS5yKd6D8QJ-aQU9LwtIEHZ1WAZw' } } through socket.
2021-01-04T19:57:24.156Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2021-01-04T19:57:24.157Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2021-01-04T19:57:24.157Z dfuse:graphql-stream About to restart stream [dc-81ec0b8b41427-0]
2021-01-04T19:57:24.158Z dfuse:socket:graphql Sending message { id: 'dc-81ec0b8b41427-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "hbroQnpbaibse3kcUVt5TPe7JZA4BV9oUQjmIBsQh4z_oSTHjM_zBzQ=",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2021-01-04T19:57:53.918Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T19:58:23.946Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T19:58:53.976Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T23:24:02.946Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T23:24:32.976Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T23:24:46.058Z dfuse:http Using `fetch` global value found on 'global' variable (Node.js environment).
2021-01-04T23:24:46.058Z dfuse:socket:stream Using `WebSocket` global value found on 'global' variable (Node.js environment).
2021-01-04T23:24:46.058Z dfuse:socket:graphql Using `WebSocket` global value found on 'global' variable (Node.js environment).
2021-01-04T23:24:46.059Z dfuse:client Inferring API token store default concrete implementation to use
2021-01-04T23:24:46.059Z dfuse:client Using `OnDiskLocalStorageApiTokenStore` as we assumed a Node.js enviroment (`typeof window === "undefined"`).
2021-01-04T23:25:02.976Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-04T23:25:32.977Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T03:57:45.343Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T03:58:15.363Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T03:58:25.421Z dfuse:socket:graphql Received `onclose` (via reconnect) notification from socket.
2021-01-05T03:58:25.422Z dfuse:socket:graphql Unregistering keep alive interval
2021-01-05T03:58:25.422Z dfuse:socket:graphql Sending a `onClose` (1006) notification to client consumer (via reconnect).
2021-01-05T03:58:25.422Z dfuse:socket:graphql Socket has close abnormally (via reconnect), trying to re-connect to socket (infinite retry).
2021-01-05T03:58:25.422Z dfuse:socket:graphql Waiting 2500ms before trying to perform the re-connection.
2021-01-05T03:58:27.925Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2021-01-05T03:58:28.932Z dfuse:socket:graphql Received `onopen` (via reconnect) notification from socket with ready state 1.
2021-01-05T03:58:28.933Z dfuse:socket:graphql Unregistering keep alive interval
2021-01-05T03:58:28.933Z dfuse:socket:graphql Signaling completion of `reconnect` method in the outer scope.
2021-01-05T03:58:28.933Z dfuse:socket:graphql Sending a `onReconnect` notification to client consumer.
2021-01-05T03:58:28.933Z dfuse:graphql-stream Handling re-connection notification from socket.
2021-01-05T03:58:28.934Z dfuse:graphql-stream Initiating graphql stream connection
2021-01-05T03:58:28.934Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk4MzI1NjQsImp0aSI6IjU2M2E0MjNjLTg4NjEtNGIwZC1iZjJlLWNhODhiNzMxMjVlMiIsImlhdCI6MTYwOTc0NjE2NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.tyzq2stkGTtyMRXjAxvcqlbGYX-TbCaOG7xE6FC0HZezpi4yVl762irCWDoS5yKd6D8QJ-aQU9LwtIEHZ1WAZw' } } through socket.
2021-01-05T03:58:29.163Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2021-01-05T03:58:29.163Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2021-01-05T03:58:29.163Z dfuse:graphql-stream About to restart stream [dc-81ec0b8b41427-0]
2021-01-05T03:58:29.164Z dfuse:socket:graphql Sending message { id: 'dc-81ec0b8b41427-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "hbroQnpbaibse3kcUVt5TPe7JZA4BV9oUQjmIBsQh4z_oSTHjM_zBzQ=",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2021-01-05T03:58:58.948Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T03:59:28.979Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T03:59:59.009Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T06:30:05.664Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T06:30:35.692Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T06:30:44.218Z dfuse:refresh-scheduler Executing scheduled job at 2021-01-05T06:30:44.218Z[Function (anonymous)]
2021-01-05T06:30:44.219Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2021-01-05T06:30:44.219Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2021-01-05T06:30:44.607Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609828304' ], 'x-trace-id': [ '83b74d9f1cf09a81b044ae85540fd949' ], date: [ 'Tue, 05 Jan 2021 06:30:44 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2021-01-05T06:30:44.607Z dfuse:http Turning response body into response result
2021-01-05T06:30:44.608Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-06T06:30:44.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk5MTQ2NDQsImp0aSI6IjI0MTY3NjE3LTBiOTItNDEwZS05MzNkLWRhOWNkYTc4YjViZSIsImlhdCI6MTYwOTgyODI0NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.j2pkwWVMu7Xu9S47OJuMqFmt8BguUICUX9Vd93WBclndeBO6hsscSrcBLV9wF-YYdX73HSsKjtSuvITNTTR46A)
2021-01-05T06:30:44.608Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-06T05:18:44.608Z (in 82080 seconds)
2021-01-05T06:30:44.609Z dfuse:token-manager Storing API token into token storage
2021-01-05T06:30:44.610Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2021-01-05T06:30:44.610Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk5MTQ2NDQsImp0aSI6IjI0MTY3NjE3LTBiOTItNDEwZS05MzNkLWRhOWNkYTc4YjViZSIsImlhdCI6MTYwOTgyODI0NCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.j2pkwWVMu7Xu9S47OJuMqFmt8BguUICUX9Vd93WBclndeBO6hsscSrcBLV9wF-YYdX73HSsKjtSuvITNTTR46A.
2021-01-05T06:31:05.714Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T06:31:35.738Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-05T06:32:05.767Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-06T05:18:35.455Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-06T05:18:44.614Z dfuse:refresh-scheduler Executing scheduled job at 2021-01-06T05:18:44.614Z[Function (anonymous)]
2021-01-06T05:18:44.614Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2021-01-06T05:18:44.615Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2021-01-06T05:18:44.969Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609910384' ], 'x-trace-id': [ 'ca3a0b1ca62093038e47e6cf178442bd' ], date: [ 'Wed, 06 Jan 2021 05:18:44 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2021-01-06T05:18:44.969Z dfuse:http Turning response body into response result
2021-01-06T05:18:44.969Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-07T05:18:44.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk5OTY3MjQsImp0aSI6IjBkMWI2NjgzLTcwMWMtNDVhMS1iZmM4LTBkMGFkZGMzZjdlYSIsImlhdCI6MTYwOTkxMDMyNCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.qYpsL8BYlj8oxGzwE6H_cNXZHjdyWUsl3VV8HQ7YonfKD16lD9vekSm5gbiLgenei3DlbeO5hNZjUl6mwY4-eg)
2021-01-06T05:18:44.969Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-07T04:06:44.969Z (in 82080 seconds)
2021-01-06T05:18:44.970Z dfuse:token-manager Storing API token into token storage
2021-01-06T05:18:44.971Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2021-01-06T05:18:44.972Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MDk5OTY3MjQsImp0aSI6IjBkMWI2NjgzLTcwMWMtNDVhMS1iZmM4LTBkMGFkZGMzZjdlYSIsImlhdCI6MTYwOTkxMDMyNCwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.qYpsL8BYlj8oxGzwE6H_cNXZHjdyWUsl3VV8HQ7YonfKD16lD9vekSm5gbiLgenei3DlbeO5hNZjUl6mwY4-eg.
2021-01-06T05:19:05.457Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-06T05:19:35.474Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-06T05:20:05.504Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-07T04:06:06.151Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-07T04:06:36.167Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-07T04:06:44.979Z dfuse:refresh-scheduler Executing scheduled job at 2021-01-07T04:06:44.979Z[Function (anonymous)]
2021-01-07T04:06:44.980Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2021-01-07T04:06:44.980Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2021-01-07T04:06:45.386Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1609992465' ], 'x-trace-id': [ 'a342eebc855e5849a5653582f329998c' ], date: [ 'Thu, 07 Jan 2021 04:06:45 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2021-01-07T04:06:45.387Z dfuse:http Turning response body into response result
2021-01-07T04:06:45.387Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-08T04:06:45.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MTAwNzg4MDUsImp0aSI6ImM4MTY5ZGQzLWEzNzMtNDEyMi1iYzYyLTBlMmMxMDJmMDliNCIsImlhdCI6MTYwOTk5MjQwNSwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.K8-bg-0BYTd6XX4VkaPBW_wBZeUUDQgGoTJn14fQNEJjB6VVH9TZ7RLLzQxCI_acBsvi1ExJmGpzA3MWZ2nVUg)
2021-01-07T04:06:45.387Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-08T02:54:45.387Z (in 82080 seconds)
2021-01-07T04:06:45.387Z dfuse:token-manager Storing API token into token storage
2021-01-07T04:06:45.389Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2021-01-07T04:06:45.389Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MTAwNzg4MDUsImp0aSI6ImM4MTY5ZGQzLWEzNzMtNDEyMi1iYzYyLTBlMmMxMDJmMDliNCIsImlhdCI6MTYwOTk5MjQwNSwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.K8-bg-0BYTd6XX4VkaPBW_wBZeUUDQgGoTJn14fQNEJjB6VVH9TZ7RLLzQxCI_acBsvi1ExJmGpzA3MWZ2nVUg.
2021-01-07T04:07:06.188Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-07T04:07:36.210Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-08T02:54:37.844Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-08T02:54:45.392Z dfuse:refresh-scheduler Executing scheduled job at 2021-01-08T02:54:45.392Z[Function (anonymous)]
2021-01-08T02:54:45.393Z dfuse:http Preparing request [POST https://auth.dfuse.io/v1/auth/issue](undefined)
2021-01-08T02:54:45.393Z dfuse:http Executing request [POST https://auth.dfuse.io/v1/auth/issue](headers: {}, bodyLength: 53)
2021-01-08T02:54:45.781Z dfuse:http Received response [200 OK https://auth.dfuse.io/v1/auth/issue](headers: Headers { [Symbol(map)]: [Object: null prototype] { 'content-type': [ 'application/json' ], 'x-ratelimit-limit': [ '12' ], 'x-ratelimit-remaining': [ '11' ], 'x-ratelimit-reset': [ '1610074545' ], 'x-trace-id': [ 'ab01509ef391b8129fc76c86cb6a7e9b' ], date: [ 'Fri, 08 Jan 2021 02:54:45 GMT' ], 'content-length': [ '563' ], via: [ '1.1 google' ], 'alt-svc': [ 'clear' ], connection: [ 'close' ] } })
2021-01-08T02:54:45.781Z dfuse:http Turning response body into response result
2021-01-08T02:54:45.782Z dfuse:token-manager Retrieved an API token that is going to expires at 2021-01-09T02:54:45.000Z (eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MTAxNjA4ODUsImp0aSI6IjY2ODU1YTJjLTI3YjktNDBlYS04NGQ4LWI3NDM2ODVjNjc5NyIsImlhdCI6MTYxMDA3NDQ4NSwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.ULIur-C5TXkRh8SWlSkuVbQZvsqz5tC_KbwE_gU45dmPCraVX6miHl1jsyNoAiMwMVWZPQL1JOUmaoqOBlvtxA)
2021-01-08T02:54:45.782Z dfuse:token-manager Scheduling next token refresh to occur at 2021-01-09T01:42:45.782Z (in 82080 seconds)
2021-01-08T02:54:45.783Z dfuse:token-manager Storing API token into token storage
2021-01-08T02:54:45.785Z dfuse:token-manager Notifying upstream listener that API token has been refreshed.
2021-01-08T02:54:45.786Z dfuse:socket:stream Socket API token updated to eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MTAxNjA4ODUsImp0aSI6IjY2ODU1YTJjLTI3YjktNDBlYS04NGQ4LWI3NDM2ODVjNjc5NyIsImlhdCI6MTYxMDA3NDQ4NSwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.ULIur-C5TXkRh8SWlSkuVbQZvsqz5tC_KbwE_gU45dmPCraVX6miHl1jsyNoAiMwMVWZPQL1JOUmaoqOBlvtxA.
2021-01-08T02:55:07.862Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-08T02:55:37.886Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:10:03.994Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:10:34.009Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:10:56.678Z dfuse:graphql-stream Routing socket message of type 'error' with id 'dc-81ec0b8b41427-0' to appropriate stream
Error in d fuse graphql client:
Sat, 09 Jan 2021 00:10:56 GMT
{
  type: 'error',
  errors: [
    {
      message: 'graphql: hammer search result: rpc error: code = Unavailable desc = transport is closing (trace_id: 8fffcdc4188b49dc4f711c8bc26c9f00)'
    }
  ],
  terminal: true
}
2021-01-09T00:10:56.680Z dfuse:graphql-stream Stream [dc-81ec0b8b41427-0] received error message and auto restart on error set, waiting [2500 ms] before restarting
2021-01-09T00:10:59.184Z dfuse:graphql-stream About to restart stream [dc-81ec0b8b41427-0]
2021-01-09T00:10:59.185Z dfuse:socket:graphql Sending message { id: 'dc-81ec0b8b41427-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "hbroQnpbaibse3kcUVt5TPe7JZA4BV9oUQjmIBsQh4z_oSTHjM_zBzQ=",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2021-01-09T00:11:04.009Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:11:34.029Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:12:04.059Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:12:34.090Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:13:04.115Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:13:31.639Z dfuse:socket:graphql Received `onclose` (via reconnect) notification from socket.
2021-01-09T00:13:31.640Z dfuse:socket:graphql Unregistering keep alive interval
2021-01-09T00:13:31.640Z dfuse:socket:graphql Sending a `onClose` (1006) notification to client consumer (via reconnect).
2021-01-09T00:13:31.640Z dfuse:socket:graphql Socket has close abnormally (via reconnect), trying to re-connect to socket (infinite retry).
2021-01-09T00:13:31.640Z dfuse:socket:graphql Waiting 2500ms before trying to perform the re-connection.
2021-01-09T00:13:34.140Z dfuse:socket:graphql Starting connection handshake with remote url wss://eos.dfuse.eosnation.io/graphql.
2021-01-09T00:13:35.144Z dfuse:socket:graphql Received `onopen` (via reconnect) notification from socket with ready state 1.
2021-01-09T00:13:35.144Z dfuse:socket:graphql Unregistering keep alive interval
2021-01-09T00:13:35.145Z dfuse:socket:graphql Signaling completion of `reconnect` method in the outer scope.
2021-01-09T00:13:35.145Z dfuse:socket:graphql Sending a `onReconnect` notification to client consumer.
2021-01-09T00:13:35.145Z dfuse:graphql-stream Handling re-connection notification from socket.
2021-01-09T00:13:35.145Z dfuse:graphql-stream Initiating graphql stream connection
2021-01-09T00:13:35.145Z dfuse:socket:graphql Sending message { type: 'connection_init', payload: { Authorization: 'eyJhbGciOiJLTVNFUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2MTAxNjA4ODUsImp0aSI6IjY2ODU1YTJjLTI3YjktNDBlYS04NGQ4LWI3NDM2ODVjNjc5NyIsImlhdCI6MTYxMDA3NDQ4NSwiaXNzIjoiZGZ1c2UuaW8iLCJzdWIiOiJ1aWQ6MHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwidGllciI6ImZyZWUtdjEiLCJ2IjoxLCJ1c2ciOiJzZXJ2ZXIiLCJha2kiOiJhZTkwNGRjMTBiMTEyNTU3YWQwYjNlMzlmN2RmNDI5YzJlMjg1ZTMyYmUwN2RjNTMzYjVjYzM4ZjVkOTI1MzkwIiwib3JpZ2luIjoiMHZpaGFlNzkyNDE2ZjFiYThkNDZiIiwic3RibGsiOi0zNjAwLCJwbGFuIjowfQ.ULIur-C5TXkRh8SWlSkuVbQZvsqz5tC_KbwE_gU45dmPCraVX6miHl1jsyNoAiMwMVWZPQL1JOUmaoqOBlvtxA' } } through socket.
2021-01-09T00:13:35.375Z dfuse:graphql-stream Received connection_ack message, resolving active promise
2021-01-09T00:13:35.375Z dfuse:graphql-stream Resolving connection establisher deferred promise.
2021-01-09T00:13:35.376Z dfuse:graphql-stream About to restart stream [dc-81ec0b8b41427-0]
2021-01-09T00:13:35.376Z dfuse:socket:graphql Sending message { id: 'dc-81ec0b8b41427-0', type: 'start', payload: { query: '\n' + '              subscription {\n' + '                searchTransactionsForward(query: "receiver:eosio.token action:transfer data.to:eosgamesdepo",\n' + '                 cursor: "hbroQnpbaibse3kcUVt5TPe7JZA4BV9oUQjmIBsQh4z_oSTHjM_zBzQ=",\n' + '                 irreversibleOnly: false) {\n' + '                  cursor\n' + '                  undo\n' + '                  trace {\n' + '                    matchingActions {\n' + '                      json\n' + '                    }\n' + '                  }\n' + '                }\n' + '              }\n' + '            ', variables: { cursor: '' } } } through socket.
2021-01-09T00:14:05.163Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:14:35.168Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:31:35.986Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:32:05.998Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:32:36.029Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:33:06.058Z dfuse:socket:graphql Sending keep alive pong through socket.
2021-01-09T00:33:20.323Z dfuse:graphql-stream Routing socket message of type 'complete' with id 'dc-81ec0b8b41427-0' to appropriate stream
Error in d fuse graphql client:
Sat, 09 Jan 2021 00:33:20 GMT
{ type: 'complete' }
 #14

Let me know, if this gonna help.

@PhilippWu
Copy link

I got the same error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants