zos
zos copied to clipboard
Uptime reporting sometimes fails with TF Chain error and is not retried
I have noticed that some uptime report extrinsics submitted by nodes fail with an error generated by the TF Chain runtime and Zos does not seem to detect or retry them.
Here's an example.
Node 3679 attempted to report uptime at block 11421695.
Checking the events and extrinsics view, we can ascertain that this call was rejected with an InvalidTimestampHint error. The timestamp hint matches the timestamp from the log file, but this block was not generated until about a minute later. I guess this transaction was sitting in the mempool too long.
From the perspective of Zos logs, this looks like any other successful uptime report:
We can see from there that the node continued on its usual cycle and did another uptime report about 40 minutes later that went through fine.
While this is a rare issue with low impact (40 minutes of lost uptime potentially), the fact seems to be that the node is working properly but getting penalized due to details of operation of tfchain.
That's a good catch. Can't think even how you were able to spot this one.
I looked into it and from a first glance there is no clear explanation how this happened. But all inputs are correct.
Also notes about the implementation:
- on sending a transaction we subscribe to its events here you can see also we wait maximum of 30 seconds before we assume transaction has timedout! Which is weird because transaction took a minute to commit
- We only assume InBlock state for a transaction as a
success(that comes before IsFinalized) , which raises the questions if transactions in mempool are assumed to be InBlock (i honestly think not, Lee also thinks that this is not true) - You can see that the log contains the correct
hashfor this transaction which means it's not any of the other cases where an error is returned. The call did return no error definitely - What only remains is if the substrate client itself (the official client) submit-and-subscribe call is wrong and it actually has processed the event of another extrinsic success.
- We can make sure the client is updated to latest
Can't think even how you were able to spot this one.
I'll spare the details, but let's just say it was a productive coincidence :slightly_smiling_face:
- We only assume InBlock state for a transaction as a
success(that comes before IsFinalized) , which raises the questions if transactions in mempool are assumed to be InBlock (i honestly think not, Lee also thinks that this is not true)
So I found a bit of reference about these states here. The relevant excerpt:
InBlock does not mean the block is finalized, but rather applies to the transaction state, where Finalized means that the transaction cannot be forked off the chain.
To me that's not 100% clear by itself, but here's another clue.
The retracted state means that the transaction was included into a block X. This block X was seen as best block of the chain. At some later point there was another block Y imported as best block and this block Y is a fork of block X. So, the transaction pool sends the retracted event for all the transactions included in block X as they are not part of the best chain anymore.
I think this could explain what we're seeing. The transaction was included in a block, but that block ended up discarded when the chain reorganized to favor a fork without that block. This could help explain the one minute delay in the transaction getting finalized (the part of the network with the actual best chain didn't know about this transaction yet).
Yeah, i understand what you trying to say. And if that is the case, I don't believe there is anything we can do except hope that the next uptime is included. Note that we didn't lose any uptime unless the node dies before it send the next one because once the (next) uptime is sent it will include the full period the node was up. so the minting will know that the node were actually up during this time even if there is a missing uptime report
Note that we didn't
loseany uptime unless the node dies before it send the next one because once the (next) uptime is sent it will include the full period the node was up. so the minting will know that the node were actually up during this time even if there is a missing uptime report
This actually isn't true anymore. In more recent versions of minting, uptime is only credited if nodes are reporting regularly every 40 minutes (with one minute grace period).
That is a small amount of uptime, but in the case of gold certified nodes where the uptime requirement only allows for ~90 minutes of downtime per month, it is actually fairly substantial.
Unless I am missing something, it seems the simple fix is to wait for IsFinalized and retry if it's not achieved within the expected finality time. It's not easy to find a figure quoted for this, but one source indicates that the standard GRANDPA config should take 18-24 seconds to finalize a set of blocks.
It seems the situation is actually worse. The problem is that farmerbot managed nodes must produce a specific sequence of events in order to avoid penalties at minting time. A single missed uptime event can lead to a "node didn't boot within 30 minutes" violation, even if the node successfully changes its power state to Up.
Here's the new example. It's a bit different than before, because in this case I wasn't able to find an extrinsic failed event (within a day's blocks after the logged attempt). Rather, I think the tfchain node that accepted the extrinsic was simply faulty.
Node 4276 on mainnet, attempts to submit an uptime report:
[+] powerd: 2024-05-03T15:28:19Z info node uptime hash hash=0x8b0d754ef270649ba4c5a83e71846659e510aa5111878ef640c71cbeb55750d6
...
[-] powerd: 2024/05/03 15:28:18 Connecting to wss://03.tfchain.grid.tf/...
Quick check in GraphQL shows no corresponding events:
The next uptime event we find for this node is at 1714752054. Strangely enough the hash log for this successful uptime report seems to be missing:
The last thing I noticed here is that the node appears to have submitted the failed uptime report to node 03.tfchain.grid.tf, and I know that this node has some issue because there are a lot of reports of failed attempts to connect to it in other node logs. So I suspect that this node accepted the extrinsic, placed it into an unfinalized block, and then never reconciled with the winning chain.
Checking another example, I am beginning to doubt that it was the node at fault as I wrote above. In this instance there is again a hash logged by Zos, but no resulting uptime event can be found in tfchain and also no extrinsic failed event.
Node 6587 on mainnet:
[+] powerd: 2024-05-22T08:11:25Z info node uptime hash hash=0x5654ad02f3267b65588de0cbbb45fcfe4ced30626ba28a95f2590c3cfbb4ea75
...
[-] powerd: 2024/05/22 08:11:24 Connecting to wss://04.tfchain.grid.tf/...
Again, no corresponding event in GraphQL (this time framed by the two events that are detected on either side):
And my scan of the chain also returns neither a successful uptime event related to this extrinsic nor a failed extrinsic event. Maybe there's something to be corrected on the tfchain side, but my overall impression is still that Zos is not robust enough about ensuring that uptime reports actually get included in the finalized chain.
Checking another example, I am beginning to doubt that it was the node at fault as I wrote above. In this instance there is again a hash logged by Zos, but no resulting uptime event can be found in tfchain and also no extrinsic failed event.
Node 6587 on mainnet:
[+] powerd: 2024-05-22T08:11:25Z info node uptime hash hash=0x5654ad02f3267b65588de0cbbb45fcfe4ced30626ba28a95f2590c3cfbb4ea75 ... [-] powerd: 2024/05/22 08:11:24 Connecting to wss://04.tfchain.grid.tf/...Again, no corresponding event in GraphQL (this time framed by the two events that are detected on either side):
And my scan of the chain also returns neither a successful uptime event related to this extrinsic nor a failed extrinsic event. Maybe there's something to be corrected on the tfchain side, but my overall impression is still that Zos is not robust enough about ensuring that uptime reports actually get included in the finalized chain.
For this one, it seems that the hash logged is actually the hash of a block, not an extrinsic. And while looking through the block, there seems to be an UpdateNode extrinsic included which was submitted by the node. This would suggest some kind of race in zos itself, where the success of one extrinsic submission propagates to other pending extrinsics
A quick check shows exactly the same result for node 4276 in the previous comment, the hash points to a block, and while there is no uptime event there is an updatenode event
Thanks for the additional analysis on this @LeeSmet.
I wonder if there was something to this after all:
- What only remains is if the substrate client itself (the official client) submit-and-subscribe call is wrong and it actually has processed the event of another extrinsic success.
- We can make sure the client is updated to latest
There is an updated version available of the upstream client. We're using v4.0.12 and latest is v4.2.1.
Of course it's also possible that we're using the library in an unsafe way, and ruling that out would be worthwhile.
To summarize, we have two general cases where nodes create a log suggesting successful uptime reporting, but no uptime event is created on tfchain:
- Extrinsic is rejected with a
InvalidTimestampHinterror- This can happen with a timestamp that is way off, possibly due to chain reorganization
- This can also happen with a very small timestamp difference (1 second for example, which is less than a block time and suggests a chain reorg wasn't involved)
- Hash logged by Zos actually belongs to a block containing a different extrinsic, such as node update, rather than uptime report
- The fact that the node logs the wrong extrinsic still doesn't explain what happened to the uptime report
- No error for failed extrinsic found in this case (non exhaustive search)
Here's a new instance of the first case:
Node 4056
[+] powerd: 2025-04-15T22:13:30Z info node uptime hash hash=0x45796291bbe5b778b858c74301449f388206ec9ee0ca3f77e3158bca643928a4
https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftfchain.grid.tf#/explorer/query/0x45796291bbe5b778b858c74301449f388206ec9ee0ca3f77e3158bca643928a4
Note that the timestamp hint in this case is only one second off from the timestamp set on the block
We are seeing a lot more instances of failed uptime reports that appear in Zos logs to be successful (logged with a block hash).
Here's an extreme example of a single block with ~150 failed uptime reports. The timing is rather coincidental with an outage of one TFChain node.
I also performed a scan of TFChain blocks to look for failed uptime reporting extrinsics (output in the expandable section below). I found 90 such failures in a recent 24 hour period. While I didn't check them all, spot checking suggests to me that these incidents all result in the same outcome, which is that the node is penalized 40 minutes of uptime.
Click to expand
Starting from latest block: 17349220 (0x0c395d544d925edb1dd7010c111cdc2e156b6c76b33db598cd26ec6ae7315683)
Progress: Block 17349220 | Time: 2025-04-18T14:58:54 (1745013534) | Elapsed: 0.20 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17348793 (0x55779f382fb9eff7bd677699dda89877d7d8e42924decccab50c025e051ddb6b)
Timestamp: 2025-04-18T14:16:12 (1745010972)
Extrinsic Index: 3
Failed Count: 1
Extrinsic Details: {'extrinsic_hash': '0xf50ce7501aa8c2fe1d26a0e3f19728b28649ab4c9928f89d5ae774d5d2a629d7', 'extrinsic_length': 123, 'address': '5EyWGBPx2mU5m2AMatVdvhKMv9M7hUqxCWnZVctu6CYGb4pd', 'signature': {'Ed25519': '0xb7a97191c63f8c098e88cad05294369f43933cd26638d02d83c08452e9edd75c69576a40a01f0f4c5e6a6070072bb58ff20f574b52adb774f2f0190b60885208'}, 'era': '00', 'nonce': 34203, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 815623}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1745010582}], 'call_hash': '0xb4612e88203521a16919df89441549cbe7f8295f70898149e762ae34834bbad8'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17348707 (0xc2e271973e752e6ed9fa0dbd314d30a2637efce5d666e79af36c902cd4eed567)
Timestamp: 2025-04-18T14:07:36 (1745010456)
Extrinsic Index: 5
Failed Count: 2
Extrinsic Details: {'extrinsic_hash': '0xaea94ff2ec205ccfe737b2acc66cb9212fb250eed4afed26dc545125bcbe72d6', 'extrinsic_length': 123, 'address': '5DvqnANVBc4Kcbn9AF9mcLj7MFLTTUPVfugAsWxhfKquAWqh', 'signature': {'Ed25519': '0xa648a352682fb6b432deddbead4f44cd0c9650a67ef016d6ffcf35630cce5a3b0b905aa10beaa8a58fd58cb1ebe89c424bf3bf153d56bad8a6328a548cd46a09'}, 'era': '00', 'nonce': 36300, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4884737}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1745010378}], 'call_hash': '0x2068cd8b5fb81f22032e989d05a76f0a120e3901df9d28a983aaf59bb749a329'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17348220 | Time: 2025-04-18T13:18:54 (1745007534) | Elapsed: 850.18 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17347505 (0x1ee52311569008e9879b07fe4199ef4a938d290f95f01998f56b3fea39e02ea0)
Timestamp: 2025-04-18T12:07:24 (1745003244)
Extrinsic Index: 4
Failed Count: 3
Extrinsic Details: {'extrinsic_hash': '0x5db6266076cdcf374a3301b5cc4f96050c2e07c04103c70f0ded151d87504a32', 'extrinsic_length': 123, 'address': '5DPMHUtXbxnmpj45BTy2bN6yP1Ug1YfJXeSi2wCCZvnUuSwr', 'signature': {'Ed25519': '0x9c3653ad871e5e39c9d5c6db770f4f61d7e3984354d63a15f29b9419b4be7e6758798fbd0a7b94c676de20e217d8fe1d346fd2131a7f2e1f3f431016e450500d'}, 'era': '00', 'nonce': 32019, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 5236598}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1745002818}], 'call_hash': '0xb72b5926a82f305c65cc76c16ca82815839a1c670fdf7a5209deff5ed37cd13c'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17347388 (0x070537a8ef3f7dd63f7d7db52a326e63db646ed96a6fc3ad8f6fb619f647950b)
Timestamp: 2025-04-18T11:55:42 (1745002542)
Extrinsic Index: 3
Failed Count: 4
Extrinsic Details: {'extrinsic_hash': '0x2627cbd497b8346b6b140c8d3c4846ee06720f1a18c35391cee396865932ed4c', 'extrinsic_length': 121, 'address': '5Eca4ZhLUJW8HzidbA1LhpP26fBkZEuXiWW1paz6CKL8bcbc', 'signature': {'Ed25519': '0x9ea1244b00cc5b5f52ff074c06d3d795af05e545c8496bb3b4a572fbbfd874a77735c9b637cef49c99a4c998e487187cfeb223bc2bbf9fb7d9208e7545af3304'}, 'era': '00', 'nonce': 11885, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4072059}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1745002290}], 'call_hash': '0x109f1540df7d577ac144e0a2432b6be695251233aee88f01ebfc62ba888ee5e4'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17347220 | Time: 2025-04-18T11:38:54 (1745001534) | Elapsed: 1744.55 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17347185 (0x9e29994866a428dc93ed53a8aa99c4fec63d57c9b967a3f7d049dd78d0bf5009)
Timestamp: 2025-04-18T11:35:24 (1745001324)
Extrinsic Index: 1
Failed Count: 5
Extrinsic Details: {'extrinsic_hash': '0xc531368e6eb96aa205f7bc18f3ec84f1130a70cbef9970aedff57442dba4debf', 'extrinsic_length': 121, 'address': '5DtKhE3PAC91qVDNXz9KJ76EsjR4XiiYW8en5BkFVi7U8cWg', 'signature': {'Ed25519': '0xde033fff02932c60cf341daca63863867fc3847e1b90010216bdabd9c5ea1e57f9808c2050962799054f1192c0eda4bbf525ba24377e46c13275156b5140fb0b'}, 'era': '00', 'nonce': 4060, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 366588}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1745001192}], 'call_hash': '0x5b45f79fc83ff030db250d6cce19998f834f6f66cede672cd1c5b96408c0513f'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17347183 (0xdbe5d76d189629e8ae6c12eb4922b91686b2543790fec711ce03a03208c584a4)
Timestamp: 2025-04-18T11:35:12 (1745001312)
Extrinsic Index: 6
Failed Count: 6
Extrinsic Details: {'extrinsic_hash': '0x3b76cf14927468a6f729ae2ef747d0314b721a64f5f3b5baa74aa20788718f21', 'extrinsic_length': 121, 'address': '5DKY8h1JUq5hQSx1n2Uon9foLEpPYLD7X8fxnQ9YHdrrVgJt', 'signature': {'Ed25519': '0x6f128cd40220980083e0d2d9f35d55f2002adfb827c0f186d9043c6b309186c40cfb74750345e6f41330ebfa44c789c330f730d8e5863f0c552fc3506933b203'}, 'era': '00', 'nonce': 4034, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 366241}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1745000844}], 'call_hash': '0x4997ffbcc0a00416c9086d1ee4a3e1d67a1c28deddf19b852289bd38c9582fb6'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17347157 (0x155842b68f801b1c2d9989187c082f0e9ad0c6e94ce9de7d599bd079af862b82)
Timestamp: 2025-04-18T11:32:36 (1745001156)
Extrinsic Index: 1
Failed Count: 7
Extrinsic Details: {'extrinsic_hash': '0xe9a327c49c6ed4ec360c4a2cd8b631e1e1efd87a0dbdc3d14758539aa90bd771', 'extrinsic_length': 121, 'address': '5GKPi7VCdkb78cB83rTh5NAd3NotQm4VKnwjr6yMctBpThkV', 'signature': {'Ed25519': '0xba8c3e2e516df351cfee08af2ce2bab537c6b2496e5e155dc734e9a5b867ac4c9ebb8868be49e9a4d246e3fdf5e2197aac385e49f9c93913999ba2f2c01a080f'}, 'era': '00', 'nonce': 9374, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 365462}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1745000148}], 'call_hash': '0xf960bad299201ccc56a8387414a319d2e975070beaf762cab5594f411cbd22c1'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17346847 (0xa107d68ccc7fc4fa7b9f1dc96d24dd6a1404031f9fd242a1d015c7c343fd5b63)
Timestamp: 2025-04-18T11:01:36 (1744999296)
Extrinsic Index: 1
Failed Count: 8
Extrinsic Details: {'extrinsic_hash': '0x7b8fb57e4500c95beb602235529bf6b6c20f5f0d995471e177657afa6a165d47', 'extrinsic_length': 123, 'address': '5FDCqCFBSw6pkzFyVrrH2QeDyhtFa4xHeA7jsXkCtL5hpJao', 'signature': {'Ed25519': '0x097fb4f8088b734b0f812c01279051e5268c1fbc1d044ffeb681cdd356b849d3d92615fe8a7d677ddf0e66b19ee93abea2aab0aab08023008bbe2443e7cff601'}, 'era': '00', 'nonce': 24972, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1949398}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744999206}], 'call_hash': '0x9d0d39e1f37e79094b3dbbd1e29fda4bcf763c0912a1b2e1413c9c3ef2c5d3ed'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17346846 (0x12c58ad97ec0e57657eaef4b1e36a2cd24d9d6597c373f6d0a57cfb95b0ca662)
Timestamp: 2025-04-18T11:01:30 (1744999290)
Extrinsic Index: 2
Failed Count: 9
Extrinsic Details: {'extrinsic_hash': '0x6132bb3ea678775429e51e324286c37807ce2f37394598aa657c31ece249fff3', 'extrinsic_length': 121, 'address': '5DrBeyp5JJoWaKLu2fFwBomW1GXKrfmydhQfFrrnxtjAcogc', 'signature': {'Ed25519': '0x1a4321268e27ee3bd2173634277abb1c9c2f9d045d0f4bedc9470b3224499f1103df15acabe1576c57dd856ecf0ceb67af3cc7cd263b8e9558bd891b60e58706'}, 'era': '00', 'nonce': 2324, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 32030}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744999116}], 'call_hash': '0x2958bee6716c574d5c37560578e47e6b648a176c00e37b75c334895de00adec4'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17346845 (0x0b5d94a2033340785b2b48c89934378927bd1832454ebb38a1b30c4925debb5e)
Timestamp: 2025-04-18T11:01:24 (1744999284)
Extrinsic Index: 4
Failed Count: 10
Extrinsic Details: {'extrinsic_hash': '0x9a752e5bedf01de805f056b10bfca7b90601599e15eb47dae6d62d8e5b89f0f2', 'extrinsic_length': 121, 'address': '5CZ5nFMy9a5Bc1rmsLM12NJ3Wx2B9vktQ3bEm868wAjfCo9V', 'signature': {'Ed25519': '0x96aa05a6289fec5489ee78ea7da34b58234c0e9eb3deb41caae815df857bd29fd8ce04c70f490b27fcbcd8f4ca9b1833711ccfd7c98ecd63943f71f3434fb20c'}, 'era': '00', 'nonce': 7348, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 31654}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744998360}], 'call_hash': '0x569c64f0a18860f8c076e71e39a8a396a46fb3b9d45a328edab5473e9c5c2b5d'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17346845 (0x0b5d94a2033340785b2b48c89934378927bd1832454ebb38a1b30c4925debb5e)
Timestamp: 2025-04-18T11:01:24 (1744999284)
Extrinsic Index: 5
Failed Count: 11
Extrinsic Details: {'extrinsic_hash': '0x6ebd653a9653ce0fa835676c9838fec83cb2d978d2c5f359c118a0bf42c2b184', 'extrinsic_length': 121, 'address': '5DWhz5dC91iwo17FpdErecFMmCCnSdxDyVUnQ5MpvBK8FtVh', 'signature': {'Ed25519': '0xda76283fcb354d1122bba676f74d58642623ededd72036e04055ea042f38485446fcfbfbd016536797cfac803fc77a5a042404032a3673b975f8696d134f0d0e'}, 'era': '00', 'nonce': 13989, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1128238}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744999134}], 'call_hash': '0xe145723c3033911e6b6e638f21045731828f69db8955bd8b274d1e73f381da58'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17346826 (0x1873a39e9ac07f8ea0e55b4632a50a1b9037210405d7f02300fcc6e4ae349c4e)
Timestamp: 2025-04-18T10:59:30 (1744999170)
Extrinsic Index: 3
Failed Count: 12
Extrinsic Details: {'extrinsic_hash': '0xe9380477f13bf5807582d4258a76ecdff563da66d112157829cb1da5f08d87ed', 'extrinsic_length': 121, 'address': '5CtCL75A2EytwFWpmVXT7VNCdqPT85hLDVbcKMtgmYJNuMC9', 'signature': {'Ed25519': '0xf8b7fa85e0d8759646f4383adb0a5c9c81be7f36ed739ef3f9a4a946a313c34a7ec8b19ee77fb60c5e8e45418d0025437a56e3db3257319ebaf24b40aaa2ad08'}, 'era': '00', 'nonce': 3059, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 32051}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744999098}], 'call_hash': '0x4f84853adeec31581c141dc658b1f3fd36df8943c30f4d9f2b1889524ee4fc7f'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17346517 (0x54f915e302a2454afc7fff92a84abb6093f2d006cb7bdf2d8f8d7b2ac9d16c5d)
Timestamp: 2025-04-18T10:28:36 (1744997316)
Extrinsic Index: 2
Failed Count: 13
Extrinsic Details: {'extrinsic_hash': '0x3e2cff67f286de724fc3787bf5ad5eb4c0b8f62573cf95e102c7d0dae34226d9', 'extrinsic_length': 121, 'address': '5HiCax6b4nEe7Wmx2y35AuHdLFaKFmzNcR2rcgL65KP5m5Vj', 'signature': {'Ed25519': '0x6a96999ac4ae073dd2a7a8a12daea5a271ea038efce906019778365adab72156978af6ba03877ce719340d426730fc00e89a6618c5e9dbb8c32dd17fa567e608'}, 'era': '00', 'nonce': 12553, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3060945}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744997202}], 'call_hash': '0xdf202ff3b68c1204aed4d68569b4c6d13f12b40a17a1e96cc73d832928a6806b'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17346220 | Time: 2025-04-18T09:58:54 (1744995534) | Elapsed: 2557.96 seconds
Progress: Block 17345220 | Time: 2025-04-18T08:18:54 (1744989534) | Elapsed: 3378.60 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17345124 (0x40d02cd8f4114556eeca0f0be0e745910e84126ffcb40c970118adb2094a1201)
Timestamp: 2025-04-18T08:09:18 (1744988958)
Extrinsic Index: 6
Failed Count: 14
Extrinsic Details: {'extrinsic_hash': '0x7e1d9815607861ed91020d0739ad25a104e52a7aeb62357a6aff113ec31d730d', 'extrinsic_length': 123, 'address': '5EPU4szv9zH8PzSdRmiJMLV74NyvaxAtezKS8EoU59iDbzen', 'signature': {'Ed25519': '0x669a5a74ffcb767ee41e1a7c1af2441acfaebd3f98c5bc3d81bb5afaaa3ef60d898e6d12285b6e039995c5631f1cf0a41fd040d43b4992164b9b45b0e68f2409'}, 'era': '00', 'nonce': 34993, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 775471}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744988310}], 'call_hash': '0x0bce9d267327fb4322cdb17d2f2aa638a10dc40a91f166687e10535d40db3985'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17345046 (0xed5ed267944d179bc94506258b8b6c4fa856119ade5857666d97cfd4d408e447)
Timestamp: 2025-04-18T08:01:30 (1744988490)
Extrinsic Index: 5
Failed Count: 15
Extrinsic Details: {'extrinsic_hash': '0x10e2cd77ff262613db0b4913cb98143542424542e7845acfb9b60460f9410ef1', 'extrinsic_length': 123, 'address': '5D9Ti1cGpLiwpWeb7mPCdp5ZKNYXuaDgxmnk9nw4rwTXDRS7', 'signature': {'Ed25519': '0x731555f28d524e110588eb9f5080d940db3442d5211e48296a9a242c37fa02addad9a56ddc4a8b4de7ca72c42011ec282f7badfa7507e7b1a13f7239a6e1930c'}, 'era': '00', 'nonce': 29701, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 23853473}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744988364}], 'call_hash': '0x23a9e806477c9c5bdc75d546af5675b95cabe12d9660161f4e29a4fcf9a4bc9e'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17344726 (0x20df479f8205bc6cfc809e74b4cbaabc720ab9753f250d95fef34b52dce93c3e)
Timestamp: 2025-04-18T07:29:30 (1744986570)
Extrinsic Index: 1
Failed Count: 16
Extrinsic Details: {'extrinsic_hash': '0x9765c391806ec221a09ab50b28459d27c46b131fa638c8b978af0865075f28a9', 'extrinsic_length': 123, 'address': '5GiUAYJRrSfnCojPH8yaUFSpwr1FtdjpoTAT7Gj1DN3tAEvw', 'signature': {'Ed25519': '0x21c9d7e4274d9c34fc525cbb1c026ee290f943aeab15e38b4faadde46cb7bbd77673a31c4faae0c1ff84b38c5273ebd063537bcb4070b2680aea038dc3ca610a'}, 'era': '00', 'nonce': 31365, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 82793}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744986468}], 'call_hash': '0x67c6ddad115f0786ff4179b715a4b6eac32441d56b9e5a31eaa5b0b036319f07'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17344674 (0x0c95a94cfd991f00b61fc1bb34318d4575937e04542b12aace526719344bce62)
Timestamp: 2025-04-18T07:24:18 (1744986258)
Extrinsic Index: 1
Failed Count: 17
Extrinsic Details: {'extrinsic_hash': '0xf2b1e7ba3c7931e39baa3411a99590a4096828e63b6e65f0e0f551b320301423', 'extrinsic_length': 123, 'address': '5FbD5fa4YtxDm3tZM4AikW6vZwkYQbC2xfJAK4a5FtFG6keZ', 'signature': {'Ed25519': '0x0f8e556886c874c74cdba1c0d55d1dddfd49a4346e529c88f8d76b36845746b5cd6a70e4e1bfd22ce2ed03b17da076387034a1cfab6bd69c9569b29f06e5940a'}, 'era': '00', 'nonce': 32352, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 710020}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744985784}], 'call_hash': '0x4a8d687afb8590f50e8f4a70a1bdd62840dab8baca3ee4e2622b89f4a89197c3'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17344672 (0xe05da1d488ada2491cdf92cd516c66225331e9ca966fa0bc6db7dc830f0f9620)
Timestamp: 2025-04-18T07:24:06 (1744986246)
Extrinsic Index: 1
Failed Count: 18
Extrinsic Details: {'extrinsic_hash': '0xd95fbcb6fc54a5685cd621629ace8e9c0292474d84a77541f057c97bdadf0250', 'extrinsic_length': 123, 'address': '5F2UeFepuDhxG4Yj4MjBv2WDnTuK7utszA6KbirXBapxRrq2', 'signature': {'Ed25519': '0x10b072cf758722bcd6e6759825370094f1b4d059c726337013e58d5f4c31856510982cfc815b56453a7cd2d9bf6be3afad95eb8a777ce07c76dcea053fe16a01'}, 'era': '00', 'nonce': 34126, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 627852}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744985562}], 'call_hash': '0x09736446f7e1ff1dabac33e30035d481741a21b74b05ca77163a376d9e83d336'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17344337 (0xbe51fefcb87a6564b19b5c50c54a2237c409905946a751cb510d60f8029499f4)
Timestamp: 2025-04-18T06:50:36 (1744984236)
Extrinsic Index: 2
Failed Count: 19
Extrinsic Details: {'extrinsic_hash': '0x451fd2b614fbfab421be1c26038a4b5d60fae59f28baafccad977935cc381ee3', 'extrinsic_length': 123, 'address': '5H6t63S8PqScAYUtggEwSb1spZet5wezTgaH8p85vJPPcLYq', 'signature': {'Ed25519': '0x426a60775f7fdde06e3255d075ce76b20cf7f538d76a6a572b33fb4e359f5885e08f01b7e0dc6daab76e3587066a8f216006e86f9f333012f0517a76b938c303'}, 'era': '00', 'nonce': 31432, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4469811}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744984044}], 'call_hash': '0xa592dd2819f42394fb4b52d71cce300ea683a9071514704442bff047f606cfde'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17344275 (0x434d1666e805392e34bcb36688e27a7b2428b45166b27a17d159076feaaabf79)
Timestamp: 2025-04-18T06:44:24 (1744983864)
Extrinsic Index: 4
Failed Count: 20
Extrinsic Details: {'extrinsic_hash': '0x9dd7ca893536c600f91412141953d6a7a00f3b246e7d20526e2a0872952f344c', 'extrinsic_length': 123, 'address': '5GJdgyNieCsPUL1vPDmDRWdqPExcvYdohudZZ8543MM6F7Y4', 'signature': {'Ed25519': '0xc4b705e7bc829107f950a6aab2734f34fbc98affebd3cdd2e7883f099e345aeb5839ec35e2b3afdeb90666d52b1f7d507bbfebad289283398d5cdc07ace00003'}, 'era': '00', 'nonce': 34485, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 80414}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744983756}], 'call_hash': '0x3f7cd98752dc3691b740717e691d07b794a3319be7234ab3b402319d8ee8298a'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17344272 (0xa8fcde4c0faabf02303d9dfe18653efb35fa963342dc3f7e6841c65ca71a6db7)
Timestamp: 2025-04-18T06:44:06 (1744983846)
Extrinsic Index: 5
Failed Count: 21
Extrinsic Details: {'extrinsic_hash': '0x75fb495750d9041faa567fdecf592d862be84031f8e755dcb9e2d8aa5d262459', 'extrinsic_length': 121, 'address': '5GkRSQjScf2WnhRjHnAoUzn5zjoXqA2bxv8CwrZJtttzEkqZ', 'signature': {'Ed25519': '0xae634b080689eaa14f3a6c14a77e3dc74b922eb274c178e0c9476d910287a4c76a2c220ed7f6d9174d45bf09a7506d3a5c48783c802d44b5916fb79793611403'}, 'era': '00', 'nonce': 10572, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 626051}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744983762}], 'call_hash': '0x96d757f7d25c26b0148af4b7d8eef0ca710065a9b9a451e045a362fa9bf56ffc'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17344220 | Time: 2025-04-18T06:38:54 (1744983534) | Elapsed: 4240.95 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17343980 (0x08f70d371be3085f0d211470b70abc2af12bff896b5a24b19c9f7ce79f228b2b)
Timestamp: 2025-04-18T06:14:54 (1744982094)
Extrinsic Index: 8
Failed Count: 22
Extrinsic Details: {'extrinsic_hash': '0x36c7f15d6a7c6576abe8b3272b11d23cf0114b44c6509160cc8b019603f47da1', 'extrinsic_length': 123, 'address': '5FafYBRqv2Mezwxs5NXNFmgWBukKMhPC7wKzJXAMEHemP3je', 'signature': {'Ed25519': '0xa6ac8330732918c17c6f3d6c7eaebc50b84f61ccaaa0c82d4a160d8b5fd36dbc5e6b3d9b940bbf4f281bf1d4c7f44434e9d3c7745c1cf2503bd2dab55e7df509'}, 'era': '00', 'nonce': 28356, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 5054557}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744981224}], 'call_hash': '0x3fad396d56049127cd456798fab32443cab24d22223dc02631a8aa0662366aa7'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 8, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17343793 (0x57f2a047370a8dfc65236cf5fd4e7694f8b26da2d5c5cee6201cebaad7c54bf8)
Timestamp: 2025-04-18T05:56:12 (1744980972)
Extrinsic Index: 5
Failed Count: 23
Extrinsic Details: {'extrinsic_hash': '0xf9e77670527f4ccd451a4e89b569b718f6f89ad7b78f36a83bbaef198ac8984f', 'extrinsic_length': 121, 'address': '5GaRXU7NzFKWjDMd2X9qVxoRbqWdz76H4yjY2Xz6FjC4a9HH', 'signature': {'Ed25519': '0x3c11d60cd0b09f8661a4f89d7cd21198920e3aefe1b0b2f276491bb05c116284ebab1c46bb6f3efda02dc4dc2d5bf10c0733efb2c52e249934356cddfe8f7704'}, 'era': '00', 'nonce': 14520, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 14247237}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744980726}], 'call_hash': '0x13a6dfc2964daaf420c92a941f4c80357cbc7e61f61362279d6d80578102bb4d'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17343220 | Time: 2025-04-18T04:58:54 (1744977534) | Elapsed: 5056.12 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17343129 (0x8c8abf0c77d6a3555691f6515a3f80009f65d38bfdcfe989586faaeb0e4ebd68)
Timestamp: 2025-04-18T04:49:48 (1744976988)
Extrinsic Index: 1
Failed Count: 24
Extrinsic Details: {'extrinsic_hash': '0x77c90932ad4c12b581460d65dfca3cceb09fa0985470801be92bd4612ecfa29e', 'extrinsic_length': 123, 'address': '5D4peKJkMCShXTyTqJs3LuRpS3WV9AF33dRNXTf8FFRPKeqk', 'signature': {'Ed25519': '0x08c8f7b0c6483ff501d9b433757e46181d09c231e3f895a97d2b93e23024bed75a469c18b5adb6d2bd69bba3e92a62e327ba599e54af07133b779dc1a4498f0a'}, 'era': '00', 'nonce': 32485, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 36947708}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744976787}], 'call_hash': '0x301bcd5a700ae643bdd9e5b1554affeeb14fe05327a766e210fd2e2a2fb0981f'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17342654 (0xad699d9cc4eefe77de687e15c2716aee6ed42b3f7e1d5827b4dc8382cabb50c8)
Timestamp: 2025-04-18T04:02:18 (1744974138)
Extrinsic Index: 2
Failed Count: 25
Extrinsic Details: {'extrinsic_hash': '0x97ef6e71b9b9ef60b4929c5a58cb267d37a431ae060856969a3de1adc0f251c9', 'extrinsic_length': 123, 'address': '5GJdgyNieCsPUL1vPDmDRWdqPExcvYdohudZZ8543MM6F7Y4', 'signature': {'Ed25519': '0xc7d0363a1f188d4bddc84a62441c5e71c96c63e1b40228fc9920a04f0c8c08a411463c643a7b1918a3e92ecaac66921a5ab63fa7b6800cf90218adedcdb45805'}, 'era': '00', 'nonce': 34481, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 70520}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744973862}], 'call_hash': '0x4746eca5e75d6715679cc56f0e9391313cc7c41428a057e4be5a8170f251b73c'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17342650 (0x7f396eddf7e9e4fddfe37c8c9efa2bcdc4bf414a477d42e8ff504f2ca23044d8)
Timestamp: 2025-04-18T04:01:54 (1744974114)
Extrinsic Index: 3
Failed Count: 26
Extrinsic Details: {'extrinsic_hash': '0x43a2c123b807a6ffadd86aa9c6b2104ee9ba1898810fd81fcbe84f8d79244515', 'extrinsic_length': 121, 'address': '5GkRSQjScf2WnhRjHnAoUzn5zjoXqA2bxv8CwrZJtttzEkqZ', 'signature': {'Ed25519': '0xbaeb4f7e17c5db64dff3d1902357d2537a1feb7958bca16134076708d0d0b3645ae87349566ed4f0207d4253c02e30ea82ea11db79cc556c7129d3149b51bd0c'}, 'era': '00', 'nonce': 10568, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 616157}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744973868}], 'call_hash': '0x22d5d6fc2ad9dcc4f770f84cd8da07a743c387bc7b6ff249ae4835e9faf7816f'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17342220 | Time: 2025-04-18T03:18:54 (1744971534) | Elapsed: 5847.77 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17341502 (0x75ff279b94662ee407ce20ada8dee2e8a16978115b82feacdf03c0904510d2d4)
Timestamp: 2025-04-18T02:07:00 (1744967220)
Extrinsic Index: 4
Failed Count: 27
Extrinsic Details: {'extrinsic_hash': '0x1ee62f1f5e20a6199922bda7dc9471c4a1b70ec2151ce69bc9f2005af2ea6b7a', 'extrinsic_length': 123, 'address': '5GiUAYJRrSfnCojPH8yaUFSpwr1FtdjpoTAT7Gj1DN3tAEvw', 'signature': {'Ed25519': '0x2001eb4b0c30b52d47303ca1915e5019b423c526cdd1b80dc6dd5f590064324efccb6c59c06568b9a7890a4de0d9e83f5c15c48a5211c50258e9e783d9cd4f01'}, 'era': '00', 'nonce': 31357, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 63377}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744967052}], 'call_hash': '0x13eaca5854c3a9ea64251453e29fde1b5861b5d20528422f6ae190942ea68652'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17341463 (0xf79df9246deabd7dc21bda34afab59ab0cd128c45280e3157aafb496fad1295e)
Timestamp: 2025-04-18T02:03:06 (1744966986)
Extrinsic Index: 3
Failed Count: 28
Extrinsic Details: {'extrinsic_hash': '0xd2b24701ed43961d32a6e46f03619a00d9337754b3aafd311cbe485ea9402d4a', 'extrinsic_length': 121, 'address': '5ETorLnK8TpsnkDXmNzfFRmVbBULMCDQPPd5AnnsscBVVCYT', 'signature': {'Ed25519': '0xd8a83879ee65d6ce74b09695e46d8850a01689a0f4ad3de711a2e410d76dc95e692e1b992373b0f6d3a2d0f85e34b9058b3902b26d9a90bedf70e9ffcec04102'}, 'era': '00', 'nonce': 11666, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 10546844}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744966650}], 'call_hash': '0xd2cde5b0aed83be0cfd5e63ddb80a0bb557f0f8bed0af9f1cc3eaa9027e21061'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17341347 (0xd3ece8f91a9c8e3d8d21db16568d01f7088ba5432bc210a950db6d4b680fee29)
Timestamp: 2025-04-18T01:51:30 (1744966290)
Extrinsic Index: 7
Failed Count: 29
Extrinsic Details: {'extrinsic_hash': '0x88e744cced1b1cd8860a52a7da18d1721a5b39c58bc247f6fde6ef220a147991', 'extrinsic_length': 123, 'address': '5F2UeFepuDhxG4Yj4MjBv2WDnTuK7utszA6KbirXBapxRrq2', 'signature': {'Ed25519': '0xe73d1fa9705311c6a0c24b00291ca5cc5f9b5cfb04dd14279471bbb281f843efb311d54e8fdac52392a464fe2f8953d3abb46d53a3c1490541b80bf1c0a3fc02'}, 'era': '00', 'nonce': 34118, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 608274}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744965984}], 'call_hash': '0xda51adc2d7270c2c50c193246368e5d65478304ebbddb8d10ba5e57c003c92e8'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17341220 | Time: 2025-04-18T01:38:48 (1744965528) | Elapsed: 6638.89 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17341030 (0xeb7faad84e31e5f1f3a9953fe4210020527006714f9900f79fc92644904e9576)
Timestamp: 2025-04-18T01:19:48 (1744964388)
Extrinsic Index: 7
Failed Count: 30
Extrinsic Details: {'extrinsic_hash': '0x97fe5e02f5a0dd40d43ccd344ede74b260c3616db7ba1a4730d8a7ecedb02553', 'extrinsic_length': 123, 'address': '5Dv4gyLRtEZC4zA5UZRErCMAFnQECgBQqmYjkoi2qCzpQ4DT', 'signature': {'Ed25519': '0xb37313b3a213ee3a7f99e1f88be4b7257ccd806ef5e0c37314b19b9bbe66c1f62773d5221cc3f1176afeea5b47972d76019c884f862e8ed0b796da9a42ae8a01'}, 'era': '00', 'nonce': 34749, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 5504509}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744964166}], 'call_hash': '0xc66b9f6c4c365498bcaab487c7c5044710cd2eacdf79c396a3d1d8f49bcaca74'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17341001 (0xf5c24842c5bb1a711ad1917e42e4b2c55bc17ab9390e038285860a391e3e49ae)
Timestamp: 2025-04-18T01:16:54 (1744964214)
Extrinsic Index: 1
Failed Count: 31
Extrinsic Details: {'extrinsic_hash': '0x3a3410877cf591e8308ceadb5db4c1af376b392a1cd1d35a3fd9298954587343', 'extrinsic_length': 121, 'address': '5GkRSQjScf2WnhRjHnAoUzn5zjoXqA2bxv8CwrZJtttzEkqZ', 'signature': {'Ed25519': '0xf087be0b534bbb6a31d3ab55c7a6d686c03c3d132277570c7747a08c083b24ad7eb0cca0a0d5b3d9dd1851e34af74da38361ef0ac418883a356105aa76e6580f'}, 'era': '00', 'nonce': 10564, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 606383}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744964094}], 'call_hash': '0x868610fb88eb0cb17bbf238ad148322b6edad9d11568a52d9a1a36b4053fe4bb'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17340996 (0x210648870c32d93141ee35cbdde0339d1a3e140a16931be6eb5457419a618206)
Timestamp: 2025-04-18T01:16:24 (1744964184)
Extrinsic Index: 1
Failed Count: 32
Extrinsic Details: {'extrinsic_hash': '0xa106832a99ee84f258da4fc1e2376d4f73b33a0713e27f45f6f4c594a2378689', 'extrinsic_length': 123, 'address': '5GJdgyNieCsPUL1vPDmDRWdqPExcvYdohudZZ8543MM6F7Y4', 'signature': {'Ed25519': '0x6d7bc7cbabcbe1e41e715e781fe2ee72e37f64a0623fc45160e4c7933d2276cf0fb577887db83a679d3e86dde803b3da30d85b57f31da5708e8dc921e186ba09'}, 'era': '00', 'nonce': 34477, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 60734}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744964076}], 'call_hash': '0x0f4d8e599fe473e84e27e313d12468dd8551b4f54724071ee6325457de0212f9'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17340606 (0x44fd4131e65378628ea107448e94892792fd259c4105d8ca1784c7d4a30f810b)
Timestamp: 2025-04-18T00:37:24 (1744961844)
Extrinsic Index: 1
Failed Count: 33
Extrinsic Details: {'extrinsic_hash': '0xf401cbc7258969f61ad88a4fe9f5e9045b14e7da9ac05192e5c6c93927981817', 'extrinsic_length': 121, 'address': '5ETorLnK8TpsnkDXmNzfFRmVbBULMCDQPPd5AnnsscBVVCYT', 'signature': {'Ed25519': '0xf037ec8b66af5c2e965ac98f6e57490489aa7314a34aa4d2d26536d6bb68e76957997254591297878445cd7025dff469b002b6edffdff2c436d1198023853600'}, 'era': '00', 'nonce': 11662, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 10541582}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744961388}], 'call_hash': '0xeb6bb4aa39ced353412242589a1a383e6d0dd4b9488855e703ae1b922e238cf1'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17340495 (0x3d4c72ab58b5b8a343c009126cd22f48d025c152f6d52c1c59b72ff9ed6270ad)
Timestamp: 2025-04-18T00:26:18 (1744961178)
Extrinsic Index: 8
Failed Count: 34
Extrinsic Details: {'extrinsic_hash': '0x569fccbf5aef509ad7674315b352de1ebfc7804eb5216660f5dd82aa9855e609', 'extrinsic_length': 123, 'address': '5F2UeFepuDhxG4Yj4MjBv2WDnTuK7utszA6KbirXBapxRrq2', 'signature': {'Ed25519': '0x73d2ac73955e0590d34a8fe70831dd89e5dd8bf9b545475689e671b5267bc529e0e60a3f8822c5f5c61be86ad4b7daa548e5bfb7e6d357e37d0eae45905fd902'}, 'era': '00', 'nonce': 34116, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 603402}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744961112}], 'call_hash': '0xa0dd7e9f80daf4549d90fd9840a5194600c6e4a3d582f45c0b2cbaa1a614ade3'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 8, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17340220 | Time: 2025-04-17T23:58:48 (1744959528) | Elapsed: 7439.58 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17340131 (0x6577d9cce51b1ec7c6bee12591364449e6d75fde3add0c8dea44f89fe47b7a93)
Timestamp: 2025-04-17T23:49:54 (1744958994)
Extrinsic Index: 8
Failed Count: 35
Extrinsic Details: {'extrinsic_hash': '0x025cba97c75d0d81992c3bcf210fa80bde8182cd4d54db35c94ae432f3330381', 'extrinsic_length': 123, 'address': '5Cjhw3YQFA5KaBKehC5bdXtPHBDnUkAv4H7i9D2HBJSGBpUW', 'signature': {'Ed25519': '0x75bc98974769991026b8d45c3b1eb9dabac0b2b2390bd51f6245daa9280194c30a2365819df3a5018dc344ddd3f35cc7e753f7efeb7e939b55bb185057b8fb0c'}, 'era': '00', 'nonce': 32429, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 16645291}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744958928}], 'call_hash': '0x08cf565c46f7058bc21ff68fc673f22cddf53d8033a6d391fc6583bbe96c950a'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 8, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17340119 (0x850302d19f1b3e56e12e243c923ef7c3a02d4de5a30649d0766f7ea822b9252c)
Timestamp: 2025-04-17T23:48:42 (1744958922)
Extrinsic Index: 8
Failed Count: 36
Extrinsic Details: {'extrinsic_hash': '0xf56b90145cb6a67a81b78158d0861709be8e8b08904931c0efb3471ddf352fb0', 'extrinsic_length': 123, 'address': '5Dk1pUJBeZy7fsAEMGNBFe6ULLC9Tyfe8hYvCDEA3gAm22RK', 'signature': {'Ed25519': '0xfe896372d33019b75c4f825161daae6dc310bdaa35d6a20636ee0f8265c73c7976e1fd01457719e7a479810fb2f7d37f0e614e9827c912ef345445f71c72a309'}, 'era': '00', 'nonce': 43040, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 911550}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744958772}], 'call_hash': '0xc22658d6f2c3c4704d6b4aec29503453e010c6049ac71572b4cfe45b79933d00'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 8, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17340072 (0x6fc9319182c3021c7bf2b489c59ba8350a0e5abed4e9dc0272a5b69114ec9dc0)
Timestamp: 2025-04-17T23:44:00 (1744958640)
Extrinsic Index: 1
Failed Count: 37
Extrinsic Details: {'extrinsic_hash': '0x5caa4818650025590bf6e1f00b6568dcd87cb0a267d66a4b16190acb1f33cc13', 'extrinsic_length': 123, 'address': '5C5Htor5fQCJCT43XXZN9mzKnjvJnsWmyDatiiNm9HveYn6a', 'signature': {'Ed25519': '0xce32793f0127817d91bf91994ff66d208e99ea3c294317a659d737d090b4b807594dd053427c1faa55c39fb7be8ad98ea839e113f14eeeb951f050912cd2600e'}, 'era': '00', 'nonce': 36816, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1797830}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744958022}], 'call_hash': '0x340b49b02cc54dce2f041b81899be93171b4fba1743539042191d47577ef72f7'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17339901 (0xf9b57d1f610cd75d985855c0e7712a4352dcbc3fbcb987843c1755e6287d3045)
Timestamp: 2025-04-17T23:26:54 (1744957614)
Extrinsic Index: 6
Failed Count: 38
Extrinsic Details: {'extrinsic_hash': '0x8779b9c4fc41a73931a70b06a4c66e72a22abfabf48e2832e6887d3cd52fc267', 'extrinsic_length': 121, 'address': '5GW4huotnWGTRPXFUmLE181nqpJzjqSJ86tdT7mmysnLNewP', 'signature': {'Ed25519': '0x6488e2ef60eaa93789bb80186c10fef5fb874ea3227fc4e71c8ecd700beeb2cfe41100e0192126e3e8279210850739756473026c0905c2a0e0214734e23c5708'}, 'era': '00', 'nonce': 2328, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1345440}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744957074}], 'call_hash': '0x48880d916d45818f0ef6c958295ddd498cc28673bc1cb1b868599af91d539258'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17339895 (0xd824f3fc8cfd80798538c47367b7ce262b02227d97f6b6bc0894faeb8f79c1b8)
Timestamp: 2025-04-17T23:26:18 (1744957578)
Extrinsic Index: 5
Failed Count: 39
Extrinsic Details: {'extrinsic_hash': '0x29d8a68194dd08f4abdda83e6fbe5b0aeb4b0d8da960978fbb17fe16776c992d', 'extrinsic_length': 121, 'address': '5Ds41DvUYBrGrcdPGPNLeKcionA64MViupk882Cr77CS7Vq7', 'signature': {'Ed25519': '0x46de4aad3c43dab51212c2cd371b2bd9c5c63af976cbd2639986bed6c16f01f8f76d08ae50106c7cc2c351e8239906ad596a6479ff3cf5864ef16703098f4c01'}, 'era': '00', 'nonce': 12152, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 169248}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744956636}], 'call_hash': '0x79977b7525aea7584815ae2d2fb94261d2eb01da340b950ae0840143deb1776c'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17339861 (0x3f2ab96536c54d835231674ba8f2750d6b45f0efe600f885fbfb7bc563bf8090)
Timestamp: 2025-04-17T23:22:54 (1744957374)
Extrinsic Index: 10
Failed Count: 40
Extrinsic Details: {'extrinsic_hash': '0x1685bf845e98a7737ee67f2219b56878cc1bdc5169d6e865488257a0e6fd0b4a', 'extrinsic_length': 123, 'address': '5Gti2CF4NHeb1gYiXDxXhSG3T3jzKdez3ugwz7FCZrL7e7D7', 'signature': {'Ed25519': '0xf7835511f79f0c947c6d03027c8a03f290fef335f7246ea808f2a5a018a46a9cc8a815d86f3605209b82e021d9d3eca3120027d58fe61490215d243326f4800c'}, 'era': '00', 'nonce': 29066, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 15957674}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744957014}], 'call_hash': '0x636ee80e57a5674e1b49216dbe5d9df17e6407b2ec84a2467e7a25e8f7a836e5'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 10, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17339779 (0x8e450d05212a5629c6ffd66568d06d4b8f45e507e0ac59ebd8c8f081bc936124)
Timestamp: 2025-04-17T23:14:42 (1744956882)
Extrinsic Index: 5
Failed Count: 41
Extrinsic Details: {'extrinsic_hash': '0x5455d4d840d54aebc045498d6b0376970fefabba730570f4b5dc3840f94c1dd5', 'extrinsic_length': 121, 'address': '5GkRSQjScf2WnhRjHnAoUzn5zjoXqA2bxv8CwrZJtttzEkqZ', 'signature': {'Ed25519': '0x946b54627982724f305f66fb2eb32876d86c9019c7cd897509b95ccd20580bc60263ff6c62d3e50fc91e5fb919680acfcf59380f948e6fb5f4fcd47a7839e603'}, 'era': '00', 'nonce': 10561, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 599045}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744956756}], 'call_hash': '0xa785bbad77f1464377862ddd6936b5cf5f127803f4d46560bef4bec4abc0a220'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17339371 (0x81b060105365408b08999e09a201266c9d80686762c6067fdc85a89a37302d89)
Timestamp: 2025-04-17T22:33:54 (1744954434)
Extrinsic Index: 7
Failed Count: 42
Extrinsic Details: {'extrinsic_hash': '0x519ebe1721a163b600f2389286fa2b4b9d122f6ee8e27624a0c6fe8e409b036d', 'extrinsic_length': 123, 'address': '5GJdgyNieCsPUL1vPDmDRWdqPExcvYdohudZZ8543MM6F7Y4', 'signature': {'Ed25519': '0x06eb5956a61b3745481f45ed52210d222680a0d4a5c1e04d211f063566ed5f289b29cfdba66ee4b65fd2eec8e4f36035a47d82c015677eb559164d5735d0c507'}, 'era': '00', 'nonce': 34473, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 50990}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744954332}], 'call_hash': '0x98d26f1d7f395bd49e3683e520cdbd492799f00a731c64417a72e58a9efcad0c'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17339358 (0xa747f14feae62a7f9613571cc0c8102e774cdada253d350039f2bbd1a9724d7f)
Timestamp: 2025-04-17T22:32:36 (1744954356)
Extrinsic Index: 2
Failed Count: 43
Extrinsic Details: {'extrinsic_hash': '0xce870c5e8d2375000c072000abf2ad3fdf84cb81f36191465636020320d0aa34', 'extrinsic_length': 121, 'address': '5GkRSQjScf2WnhRjHnAoUzn5zjoXqA2bxv8CwrZJtttzEkqZ', 'signature': {'Ed25519': '0x1d6657df1d41440459ed783ea6d29f27f5536378c1d039ce66ea80c4e2618faa6cc581255dcdf5a88e04e9302c41dbc039cac48b6d207b084cc7e9b41ba06e00'}, 'era': '00', 'nonce': 10560, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 596537}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744954248}], 'call_hash': '0x939bef45fbf113e4015f5484f6b4e7bf5827f14438a7818e55b00b9b6ef388fc'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17339237 (0x84df74c1876035235e83ee6057f6100a0598d0e0957fcd0a20f68a6f968055be)
Timestamp: 2025-04-17T22:20:30 (1744953630)
Extrinsic Index: 4
Failed Count: 44
Extrinsic Details: {'extrinsic_hash': '0xecb921f6f7df5da567c7c9130a11464a6a8f1ab60804f0d33ff3fb6bb46c5c12', 'extrinsic_length': 121, 'address': '5DCdsoGoLM8YB7rk4uFgVtRjtguGoTyrEK13b16EBkau38ED', 'signature': {'Ed25519': '0xc7cb3496b6dc32ac3ef345b3ad94623628a73672707fa9728e2ff4be177b107c8feec2b2144976dc35da01ce77e2590d3982eee67551c44949a5882966ff9202'}, 'era': '00', 'nonce': 684, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1008337}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744953048}], 'call_hash': '0x1f32f60a7d6e51546fba446cd8718226eefeb5bfea4649e3abdd90ed23efe5c7'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17339220 | Time: 2025-04-17T22:18:48 (1744953528) | Elapsed: 8282.90 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17339166 (0xd00d7eedb637a550b58b01f026b81cdc6077c9f6e91e37de2cb1175975731bcc)
Timestamp: 2025-04-17T22:13:24 (1744953204)
Extrinsic Index: 2
Failed Count: 45
Extrinsic Details: {'extrinsic_hash': '0xcee811b880d24f73f82e488c4ea5a9e9a7465b7797d91079cc7bb69a47a789ea', 'extrinsic_length': 123, 'address': '5HonTMJeDcWVdE9usmVri9TGZYinXwB7fidSNrudzb7YA7Yf', 'signature': {'Ed25519': '0x68cdb0ec700be288bf5b74e5f3981f556210a1a3a6684c6ed3d505c6722a742cf42dea6c26ecf323b127d4e1cdce083300e30b2c06f520ada35b7451d45a6e0d'}, 'era': '00', 'nonce': 20225, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 2789593}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744952466}], 'call_hash': '0x302701899f1427cfbc765908830f4277cba3969c12d2f5360fe7c82678680261'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17338753 (0x3647ea6f87e349a6d8107a5c28e622bc39b73bd587cff4643ca0248c31a72331)
Timestamp: 2025-04-17T21:32:06 (1744950726)
Extrinsic Index: 3
Failed Count: 46
Extrinsic Details: {'extrinsic_hash': '0x290312d89381f1c879cbb35c1213dc67e80650452feb1a736137b539c89546be', 'extrinsic_length': 121, 'address': '5ET9ZNz7isDH1dR3gQqpbPYwZj1fkSF4soCfGB4GyXaankrL', 'signature': {'Ed25519': '0x80deb0b2edb74e6b31c85659707a2fe6ca1bb1e250abf02b1f410a8068ce367e5270c6381f93fd2984dc98c9389453bf78fde99137db2e64dcd9e59f2edcd50a'}, 'era': '00', 'nonce': 14622, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 7839001}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744949976}], 'call_hash': '0xa5c9d07e02bd2ff7daf40ae93f64f0d49b3867ee4b7438eaf4278bf960cb9e1e'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17338724 (0xb915766b48a7852ac4dec61be2ef135a223ecff7741325f140a44c1189b162d5)
Timestamp: 2025-04-17T21:29:12 (1744950552)
Extrinsic Index: 1
Failed Count: 47
Extrinsic Details: {'extrinsic_hash': '0x2d7bbaf45f9d1b2f5a39f7c3513b514bac49cd5abaf55dde01a247331c8563be', 'extrinsic_length': 121, 'address': '5CkebxKHZvs4BsP6HRpFtLumqRCuV6CMoAc2hx9tFPjSnQRC', 'signature': {'Ed25519': '0x3b1f2fc0ab5ae1ada8b977a7bea309d7fd66445e72dc5abd4ba4d60c8bde166f977b165a2f5d6695f7c67192ddc34bc94daead1bcfbf29bca7b6d570fbfbb403'}, 'era': '00', 'nonce': 5027, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 19105}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744949677}], 'call_hash': '0xf311e1848687270be21988490078194229da195cf0b68d296a340ea33566558b'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17338220 | Time: 2025-04-17T20:38:48 (1744947528) | Elapsed: 9093.06 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17338066 (0xfa9897685e4e640cdee23982c06b7044123cefb0d7f97fc1c7ec225e9c5ca445)
Timestamp: 2025-04-17T20:23:24 (1744946604)
Extrinsic Index: 6
Failed Count: 48
Extrinsic Details: {'extrinsic_hash': '0x1ac8b6774669c982ee5d4398c9116ac7a27f899bce432fc53dbaf8371dba4edf', 'extrinsic_length': 123, 'address': '5EcZvQJSYZXu3DTTq27RQhSzdR32aR4kwq78sGdqfR5ryJ3k', 'signature': {'Ed25519': '0x6a41a83b3aba474a76b81592822030c644131af300d7198a376340779e1ef1c2288baefc33c532595e02f99402f1a596f0e889b3f106ebca6bb199140d559b05'}, 'era': '00', 'nonce': 34729, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4401955}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744946230}], 'call_hash': '0x46670bde561f01e26514411ef3af1f440d2350caaf81cd14e364762ef3ab66b9'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17338066 (0xfa9897685e4e640cdee23982c06b7044123cefb0d7f97fc1c7ec225e9c5ca445)
Timestamp: 2025-04-17T20:23:24 (1744946604)
Extrinsic Index: 7
Failed Count: 49
Extrinsic Details: {'extrinsic_hash': '0x4f312a6f24f87fc5220261fa222b44d0da631cf95b77fb85fb53d780e539a69f', 'extrinsic_length': 123, 'address': '5Er7GpjkvNj7uPRGAW4Z2mYGG9PtKKypygcecbs3jY1GYkeQ', 'signature': {'Ed25519': '0x522f79c34b101fbddfd72f7eca46d2d68f941d0191dfc5bbf18c309e1668292d737fd474c987cc09997ab0ba2d71c00c0f7fd57dc43aef14ac2805020796a00e'}, 'era': '00', 'nonce': 30363, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4402208}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744946510}], 'call_hash': '0x391d7850b6478cbe9a156b99d3b5e3f02e3c54804d691668433010092a7c4dfb'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337900 (0x6822e6eeb9a078a6da040eb597572663b784ce771d54ef7f560f748b6ff0307e)
Timestamp: 2025-04-17T20:06:48 (1744945608)
Extrinsic Index: 7
Failed Count: 50
Extrinsic Details: {'extrinsic_hash': '0xed73849c95ae8a19c65cbe715839d219f8ce6ec8145576c466ffbd224ad2bf1c', 'extrinsic_length': 121, 'address': '5E3UE4SkUipYf7MsW2JpG9BTU83gU6SQcByjeHMoYUhEqwd6', 'signature': {'Ed25519': '0xa80c59e4c6ccf356af4fd5a87bb408bdd6e6a0300cca6498d083a82760988e16a4471e8c28b770bcecad060af7d1974ec37b393e834b8611f6dcf3d4550c4a0e'}, 'era': '00', 'nonce': 600, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1156009}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945248}], 'call_hash': '0x5323241db23b3ccd15084df606bab0384692562343988c8a526932cd246705f9'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337899 (0xf6ec10f94817e61619cdff38fb079730337329477442c9bba06f7a208129ed81)
Timestamp: 2025-04-17T20:06:42 (1744945602)
Extrinsic Index: 5
Failed Count: 51
Extrinsic Details: {'extrinsic_hash': '0x67153c5a0bc50307d5a7f0e4af674d4e93795238a262192a792043b17573846b', 'extrinsic_length': 121, 'address': '5DZuLVhcTmKcrpK3CwLTdch9X8vDrNcu1eu3xwVMYeUuKMEx', 'signature': {'Ed25519': '0x151006339972f21863eabecde17232377ea3708ae6b6c1250148d98f4c2a6a830883f730b5409b77b2f97c4d56acdc3b59fd204a3832e56286d2308ec2188a06'}, 'era': '00', 'nonce': 11076, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3679290}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944906}], 'call_hash': '0x947e74c39310775170da5fc82f26558ead8e3b13a2fc7046ad7ef9915d95f255'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337898 (0x9af9d5203080764d37e79d6862081747632dddc495fb4d94d827c2c653bee6a1)
Timestamp: 2025-04-17T20:06:36 (1744945596)
Extrinsic Index: 3
Failed Count: 52
Extrinsic Details: {'extrinsic_hash': '0x2db2a21e72e6682038fdce9a7f46f935d538f2cd574a392a337dacb0a42fbba4', 'extrinsic_length': 121, 'address': '5DUobfHvebNwCGwnpHqLA7ui1DbGnhy91kR6iWoPfSMBNzZy', 'signature': {'Ed25519': '0xb858a4c2b9a179bc1d6c329e41254def72466f4c8c40dcb7d9ccc765d9558b3f7693c685b4c633bfe0e7ac627996a1a2f2e7352782848b5d4d5a5fa5d82c0707'}, 'era': '00', 'nonce': 8832, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 139983}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945008}], 'call_hash': '0x1b415c7a3cd6fd643b3cf241628c6b607083d7307125b14353730511c173390a'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337897 (0xad2894deea4994277df2e113f082554486830eb126077c77404ebfef6dad6490)
Timestamp: 2025-04-17T20:06:30 (1744945590)
Extrinsic Index: 5
Failed Count: 53
Extrinsic Details: {'extrinsic_hash': '0xbc08f511acc1e453fb3712765e943d47119eeeaa3cde56353e1b396815859f93', 'extrinsic_length': 121, 'address': '5FZsDySADnKCKpVyU1XXCveLzZdfGo6qXpe1kW5rTqPvdQUm', 'signature': {'Ed25519': '0x8800cd004e8ce853d66a83ec0942d7aa4da65f85acf9dfc0d225bff0635dc0f70376da180fb31cf46a523ec07beb9cb83f7f3213d6cedc08154eb3cad982ee00'}, 'era': '00', 'nonce': 11049, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3679260}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944894}], 'call_hash': '0x981571a6794c618bc4ff1cb55f9696d29b513ac0312a68bf9eaa262b4080e195'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337897 (0xad2894deea4994277df2e113f082554486830eb126077c77404ebfef6dad6490)
Timestamp: 2025-04-17T20:06:30 (1744945590)
Extrinsic Index: 6
Failed Count: 54
Extrinsic Details: {'extrinsic_hash': '0xf3e4db078a8aee316c5a1dc3b06a8b2e02b5574e54fd80803d200e9a6afa31e8', 'extrinsic_length': 121, 'address': '5HWcepU4suV7q4XYPjMaTkWGexSGQN8siGf66GRLbywhJGXr', 'signature': {'Ed25519': '0x08f7e28372d89ad686a3276bd68b896b568c7cae17e789c2603fc10fcbddc37ed9b100bbee4fb9f5d0d52e2c13e329d84cd82001ed701d94757858e23f08e201'}, 'era': '00', 'nonce': 1775, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4180121}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945116}], 'call_hash': '0xe8ced45e889a0b7df2a0483e648f2b2d0f1c6076bd02e14b401e7eb1cedb7287'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337897 (0xad2894deea4994277df2e113f082554486830eb126077c77404ebfef6dad6490)
Timestamp: 2025-04-17T20:06:30 (1744945590)
Extrinsic Index: 7
Failed Count: 55
Extrinsic Details: {'extrinsic_hash': '0xe5ab2405be40a0a3ecfea73d4a56a8b0b2fc3df63156de7c866126894b1468d2', 'extrinsic_length': 121, 'address': '5ExByVakg2Uvx6TrFFCiT1Cfs2T7MafuL6PcVzCAdvTpw639', 'signature': {'Ed25519': '0xb0084ca068805a36d84f8746887f0ef35940225414ec3b3652cff2d43e9a4ceecf0e3bca2256dd04cd53efce20bb19a5c6b8bebbf2292203ed4a2862d7748f06'}, 'era': '00', 'nonce': 11041, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3679704}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945296}], 'call_hash': '0x423bc9b85927ef3af6d53699b65afc24d47a2921d39590729467ec54c9253fe9'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337896 (0x0337f32f3d371d05c74933d09d2a37c3911e13036e8ce13f1e24b72f086dbd3e)
Timestamp: 2025-04-17T20:06:24 (1744945584)
Extrinsic Index: 2
Failed Count: 56
Extrinsic Details: {'extrinsic_hash': '0x8d57fdb304c92367a5494a84d171270c0a1680eb2f89128c94df0060893a9573', 'extrinsic_length': 121, 'address': '5FxovTnEwSjagv6ieMVxCSLEKPorkKvAmhgy9jRThhRsc4ZG', 'signature': {'Ed25519': '0xd5779181dcc1f5bef5d152f889016fde6f32552b2bba5cf82e75d8587490cbd23bfbdc4762e740f282a39e0084987fb8e6151c606544ccce3ccdfe0c6d40160a'}, 'era': '00', 'nonce': 629, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 475176}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944954}], 'call_hash': '0x4e9d4b8dcba3c1b566fd35a41b7fb7363816cb521ce92acdf617e76d5c700dc8'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337896 (0x0337f32f3d371d05c74933d09d2a37c3911e13036e8ce13f1e24b72f086dbd3e)
Timestamp: 2025-04-17T20:06:24 (1744945584)
Extrinsic Index: 3
Failed Count: 57
Extrinsic Details: {'extrinsic_hash': '0x0591d901cfd61ce217e772ba49ef6e02172ca01749072abe340f5df8a2899474', 'extrinsic_length': 121, 'address': '5HEfWi1z293cpvoYkynLfT3f9LTVQCY8v8x5KqWnJBEt5DwV', 'signature': {'Ed25519': '0x62d780c042a0c900b40389648d350ff1d7c5a498099c3d8f7526d065ffe78b70a6340771fa3593210c4c8ef2f2be6c21dd678e93a2d845eba96fa83ff8ab7d0d'}, 'era': '00', 'nonce': 2717, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3679599}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945128}], 'call_hash': '0x9b95a1ea06b40602fb7595131daa65a8ae946f434cd10511f0ac36f45b5e138f'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337896 (0x0337f32f3d371d05c74933d09d2a37c3911e13036e8ce13f1e24b72f086dbd3e)
Timestamp: 2025-04-17T20:06:24 (1744945584)
Extrinsic Index: 4
Failed Count: 58
Extrinsic Details: {'extrinsic_hash': '0x7452731b1e2277852cb3869e008f073bf52d6b708abc9ea9b8aff2dc7be764cf', 'extrinsic_length': 121, 'address': '5Fuqvh54SGf16jFeQjzcB8YTWofpd7JSqcDysMJ37bPBNB6c', 'signature': {'Ed25519': '0xb550a1053c76f1a3d8749c8fc00e37e45e9d5d31b9da118e88ea2f2f9ca5143ea3ebd2f905f06aa6e5f8adaba2907b7e2b220a132f18d51a5262a30cf2fb7b0a'}, 'era': '00', 'nonce': 9106, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 71747}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944828}], 'call_hash': '0x161519c4859ee0a6fdcdd5d2d0dd31ac4df5fb3d9e48f9ef63417dac6f9eedf6'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337895 (0xc00f831a6b16c26442fe249fe75ef0ccd4aed9961fb42f596e4d7f59eea7ce4c)
Timestamp: 2025-04-17T20:06:18 (1744945578)
Extrinsic Index: 3
Failed Count: 59
Extrinsic Details: {'extrinsic_hash': '0xdc7a81e3edfba8f052bf58c7e2157b92b6bf1318683ed4759c6b7d37341efbb5', 'extrinsic_length': 121, 'address': '5CbhFKXdgmptoUcVyBpyn2TFoEDMBB4Pftq96K2mPsJJ4tN3', 'signature': {'Ed25519': '0xc666998738544ad17dba8f952885969920569d620dbaafd8d3c20aecc7e75c9037f368f2f148b3d3c00f05815b1b164dd291425462712db6b1c5f85498577c0c'}, 'era': '00', 'nonce': 11010, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1412156}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944937}], 'call_hash': '0xee7d8de1f4ab6d0257601e71f3ea56a9761c966ff58756d61342d805a8f60e46'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337895 (0xc00f831a6b16c26442fe249fe75ef0ccd4aed9961fb42f596e4d7f59eea7ce4c)
Timestamp: 2025-04-17T20:06:18 (1744945578)
Extrinsic Index: 4
Failed Count: 60
Extrinsic Details: {'extrinsic_hash': '0x77f1156dd8883b7a46cfd5ff04db4f01a04a3f9637e1d2cdd93a8d794f9639ab', 'extrinsic_length': 121, 'address': '5HBc1g8URcQDGqMYx87p7pJDjZNrir3TRki1ZpB86uAYe3Jz', 'signature': {'Ed25519': '0xb15e28d5a92bbee4d5a6faef75d4719f49ee2a83febcb267cf49733054e1a8c793f92cb5b3091c9904dd6d17f079be8b148a59d3ae174d24497518324772440f'}, 'era': '00', 'nonce': 8224, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1415087}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944990}], 'call_hash': '0xb2d103dd33bef7b73ff7f20ff01e2c56cc4a753d7523163c86e3b2766bbad295'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337880 (0xdeaaa72df40a635f42d01f63ab97515dad99b104682a3e6ac8640ddcf1c11bea)
Timestamp: 2025-04-17T20:04:48 (1744945488)
Extrinsic Index: 2
Failed Count: 61
Extrinsic Details: {'extrinsic_hash': '0x1f06f87b989bd492516986d9f712d888dde048e2bd3d812981f26730ffb691b9', 'extrinsic_length': 121, 'address': '5EiDdQ3M66Lndc5f1ZCXCTHoWFYqoM4xCytna4pUd49FZaoV', 'signature': {'Ed25519': '0x00fdaa1fcdab4e2a620a223b88326cb0b338682e29649f98f39f49a4a0c262f06e082fc303954d38c52c62b2a1c1d4f5867c1fa9235476e6b9e6b434b5998b04'}, 'era': '00', 'nonce': 1715, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 759019}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945140}], 'call_hash': '0xfc2c239d75449e2b04900bfb70d1613cc22257a8677f7d1a884917dd4c6339c9'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337880 (0xdeaaa72df40a635f42d01f63ab97515dad99b104682a3e6ac8640ddcf1c11bea)
Timestamp: 2025-04-17T20:04:48 (1744945488)
Extrinsic Index: 4
Failed Count: 62
Extrinsic Details: {'extrinsic_hash': '0xaa9c972566490a4b4e175d46a28cb688479589cdf1204b2417fabdf3f53fec4e', 'extrinsic_length': 121, 'address': '5Hne7vFBE699p2o3As9B2UPLP4BJQGG7X1iXuwSgjZUPuwbY', 'signature': {'Ed25519': '0xb10a63b626e06c2c9ee7216f9b3a5c5ce12ca15b48f396cf43750b8043f509fddb6ffc15df48b27245dd9af54ddf29e52bd2f281060213a7a0a7c333f7a06c08'}, 'era': '00', 'nonce': 10045, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1412195}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944936}], 'call_hash': '0x5c68da44f197b2beddb6bc862e26ed45f8cfb7a6c36613e10868bba18a018c0b'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337879 (0x570f096612a89357ddbbe9e4c40f7e2c7be1ea25f9cc00292b7661f2473e98a2)
Timestamp: 2025-04-17T20:04:42 (1744945482)
Extrinsic Index: 7
Failed Count: 63
Extrinsic Details: {'extrinsic_hash': '0xa295457af21a7e48fe16eadb4f7b95582a92f599df64ff558c3dab2c3a67d457', 'extrinsic_length': 121, 'address': '5EmAsT9QVDGNjQz6NEnqvrfptNLCrFm1nL3uNCjRuKCRtCQw', 'signature': {'Ed25519': '0x457e5e9dc4c7a19052fc0fbfa1c322249144b1b39fded58f96346eddd28f33bb9eb5e231f80977183beebc2a5e97c2142f4a35b0ffbb20630899ec3ba4ad0c02'}, 'era': '00', 'nonce': 2368, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4192262}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945284}], 'call_hash': '0xdedd612c8fddffe2b89c3b6a3b54e2af93f6d2cbd13ff7e9ba84838548929b10'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337879 (0x570f096612a89357ddbbe9e4c40f7e2c7be1ea25f9cc00292b7661f2473e98a2)
Timestamp: 2025-04-17T20:04:42 (1744945482)
Extrinsic Index: 8
Failed Count: 64
Extrinsic Details: {'extrinsic_hash': '0x61f8b71f28dd5cf1d5d4886dd3190e4fcf1d64cf8d4a78167e05e3cf78a4d36d', 'extrinsic_length': 121, 'address': '5CAYy4sni6CTEdsAbMbsyZhow7ozN7m4QzM6fvhr6Si6AJCK', 'signature': {'Ed25519': '0x07daa977ed3e312b1271bccf54eec8f03f81a2324b721b48cf1a937d43e384e4c82f3cc12b729a8722f458bff48d1056b1278d1f43231c83be515265abf1300b'}, 'era': '00', 'nonce': 11042, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3679622}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945236}], 'call_hash': '0xa10e1d1ab23e3e48915c7d77436e9d24a71868551c46824bd8f2ea855bbeaa44'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 8, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337878 (0x1dd4b04997d337d10c30c73661b604bd1403ccf576b0f7a39f280a30799120c0)
Timestamp: 2025-04-17T20:04:36 (1744945476)
Extrinsic Index: 7
Failed Count: 65
Extrinsic Details: {'extrinsic_hash': '0x5745a3794616bf11ae6936eb726fce32f5be39eeb7380a0e011efe3361029776', 'extrinsic_length': 121, 'address': '5HP2KV9qxCugESF8T92vMw2S5CAzKNsN938gkWGXcnt2ruWX', 'signature': {'Ed25519': '0x21e129142a39ac37eda6d51e45a9f245201851f76acca7cdafe8dcb6da906388298c19a724dce11d20b9ff38c14338ab10bed3ce741d0c8ffce66546680b3001'}, 'era': '00', 'nonce': 1744, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 483272}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945164}], 'call_hash': '0x104089b6df6b6680fa25e8d104e53e21536c751aac8747dcaa084e3b20f2ae25'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337878 (0x1dd4b04997d337d10c30c73661b604bd1403ccf576b0f7a39f280a30799120c0)
Timestamp: 2025-04-17T20:04:36 (1744945476)
Extrinsic Index: 8
Failed Count: 66
Extrinsic Details: {'extrinsic_hash': '0xc67b59eedfaf225953c4e72c712c6e4dc16b53400ff9830725eb13d0c22f7d9e', 'extrinsic_length': 121, 'address': '5EP6tcFqzwX3SQBRkennXxrUsZeMBqcoxpJ3Er7brx8JhPTt', 'signature': {'Ed25519': '0x7aa2809c019ef4030eb7a2cb0304827746cf233a6e20135fb7e34e50b663092f9a9afdf1c13f9716ca18d983f13cc796497ba7a419acc27a5540c43b91c7d80f'}, 'era': '00', 'nonce': 2343, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3666582}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945230}], 'call_hash': '0xff13b4b2c0d3071753ff12a10003de4170aaf2e229ec0e67220b7bfc576c1051'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 8, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337878 (0x1dd4b04997d337d10c30c73661b604bd1403ccf576b0f7a39f280a30799120c0)
Timestamp: 2025-04-17T20:04:36 (1744945476)
Extrinsic Index: 9
Failed Count: 67
Extrinsic Details: {'extrinsic_hash': '0x0d8314667472cad7999dc8490a5d79ecd264a5580ce54d5cfdbd85ef3d8f901c', 'extrinsic_length': 121, 'address': '5FsfXuhY74YA3SNZjibWZnq9WrE7cjBkte3A7UirjgXXcekM', 'signature': {'Ed25519': '0x8082d2376e9a80678bc66286077f08192f019e05ea3cc7356de6a5975da7075d87714fd48d0badb2d04b19bad5a0c2396db6bbff11325a709cfb4ab888306103'}, 'era': '00', 'nonce': 2390, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4092660}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944816}], 'call_hash': '0xa8040c999f31e4ac176b516c5cd02fbe8197de8302ebde48a7e0750ccaaf152a'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 9, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337877 (0x2d323ac3b9cd1ae58ab75dacd096765eaf4ee84b3a753b8c6ef5ae579a43d3ff)
Timestamp: 2025-04-17T20:04:30 (1744945470)
Extrinsic Index: 5
Failed Count: 68
Extrinsic Details: {'extrinsic_hash': '0xfe72d1051dad7dd4050449433c77e4222b28a64f327d043260d2f1fda2b0ab46', 'extrinsic_length': 121, 'address': '5GWTzgp3ceikGj2LM28hV4M3FGiorLZgumh912uJDrEVKxws', 'signature': {'Ed25519': '0x8accb7cb86bef145ee99b3a2a21ba02bada483b7c596b999c80ca0f3d3b3838de8d4a4cc895a7c6567db2a19e45a0ee0d7361fcfabe354b1706f1648313fd60b'}, 'era': '00', 'nonce': 8855, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 475789}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944846}], 'call_hash': '0x80e933be7684a966b0f596792f789f7952bc62117314c49a53802432d9746d55'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337877 (0x2d323ac3b9cd1ae58ab75dacd096765eaf4ee84b3a753b8c6ef5ae579a43d3ff)
Timestamp: 2025-04-17T20:04:30 (1744945470)
Extrinsic Index: 6
Failed Count: 69
Extrinsic Details: {'extrinsic_hash': '0x73b2dbacab63dc9ddf79f08d82d402eaf09f840edc8748d68b0430cb74d974b2', 'extrinsic_length': 121, 'address': '5GKRUM9pVch3LYzVuKxuroJNtuEf4uRzhmDut7EWsQEuhc8U', 'signature': {'Ed25519': '0x75675e240f51dd90892052713d41b82e7c8f1e922d54617244677e58886ef9be4b24ceee16850484ff03d3f2c4f6cf49ab0ea8f45a876de383c713e03aaf1000'}, 'era': '00', 'nonce': 11014, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1415424}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945338}], 'call_hash': '0x93b1be3f9c55b78144ca9ac0a769f7dd29229c07fb7a363d5954a1cc8ee478c8'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337877 (0x2d323ac3b9cd1ae58ab75dacd096765eaf4ee84b3a753b8c6ef5ae579a43d3ff)
Timestamp: 2025-04-17T20:04:30 (1744945470)
Extrinsic Index: 7
Failed Count: 70
Extrinsic Details: {'extrinsic_hash': '0x8d3b69b1c028d727bc811df94bae476b3e6b235c81bd50451eb19c4676de49c6', 'extrinsic_length': 121, 'address': '5G1kRZ3oa92k6mS3atCeNM8BJxj3fEk4Bi7rZB7iyzGKvJAY', 'signature': {'Ed25519': '0x727e4e0d686fa3d47f4d3f54c588f17c5d890692f003a6ea1a458bb128cff69f7ea89ea54fbf2a144438b882503d40b5623697da1483b98a3c947fce68af5605'}, 'era': '00', 'nonce': 589, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 118916}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945248}], 'call_hash': '0x1509aee586336dd0ca48e16a56853dec496f936f0a2e88df72467f3793900968'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337876 (0x270452526a7a2824803b9357b1055be90bf3f110dcd3b6eb459c2feb38814add)
Timestamp: 2025-04-17T20:04:24 (1744945464)
Extrinsic Index: 5
Failed Count: 71
Extrinsic Details: {'extrinsic_hash': '0x6628590da20499fc748aff212edb7c39d82015350b7b5493016a993b4cc7e7a3', 'extrinsic_length': 121, 'address': '5GfbifNNwwY5DiHi1i7xtofqqM9iDa4NSKf7eZmma6u2JBhr', 'signature': {'Ed25519': '0xbd63c899e134daa5a63b68eaec93468924b1fb0a1ace9c8367f6019e0ebdf247b0a8c10093d073a7af1a9e795fc41edebb6425fa24a0d2985a512b7120a43507'}, 'era': '00', 'nonce': 11062, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3679547}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945140}], 'call_hash': '0x99522e7256d3cdbf751568347e11c095d18d7594eb42eedfe312f65a8b7c96b8'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337875 (0xfb779cc612884ca6d339212c18fe204bcb5ce0dc27ee4e80ed8a1844548d1ec1)
Timestamp: 2025-04-17T20:04:18 (1744945458)
Extrinsic Index: 3
Failed Count: 72
Extrinsic Details: {'extrinsic_hash': '0x4a2c71ade2859668aeb87cf045821866cea05236f377e00940eaa1a2363ece7d', 'extrinsic_length': 121, 'address': '5HA8G6aXoCdyDGum4JN9KwLW2v8rv9cKgSepsk2Wy9Gk4hDh', 'signature': {'Ed25519': '0x401882117977423be74838b08046ed38ebece526da93da96caebbfe2cbdba96df3d8fcfc8ad75e1d96b1e4b85ac1ea1392df759566886c8ecb20fabdb7866d0f'}, 'era': '00', 'nonce': 2376, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4185593}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945164}], 'call_hash': '0x189ed42cf53909809fa7a86a26d26302737509a899834d1ffee95bde2d852180'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337875 (0xfb779cc612884ca6d339212c18fe204bcb5ce0dc27ee4e80ed8a1844548d1ec1)
Timestamp: 2025-04-17T20:04:18 (1744945458)
Extrinsic Index: 5
Failed Count: 73
Extrinsic Details: {'extrinsic_hash': '0x100e8aaf3109640f78c32d476e137c2fa5b15e1dbbf2a6db73a2d0028071c986', 'extrinsic_length': 121, 'address': '5FFbRzFZssWBBH5SFQvbqgaxEW6NZCBMAjGuSho8uYgLG9JG', 'signature': {'Ed25519': '0x5e9b5a48c40f4d74c1530462f4da383b2eca93918fae278e642779c8e0b20d24bed3afcf23af909c058773bf3081ff11cef3f3b4d8cfc61f173a52f2ad0f270a'}, 'era': '00', 'nonce': 2380, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4090115}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744944732}], 'call_hash': '0x09d5b4966ad8acae4d78f62535cacbaa93e6aea848907945e1100441d511ce6e'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337875 (0xfb779cc612884ca6d339212c18fe204bcb5ce0dc27ee4e80ed8a1844548d1ec1)
Timestamp: 2025-04-17T20:04:18 (1744945458)
Extrinsic Index: 6
Failed Count: 74
Extrinsic Details: {'extrinsic_hash': '0xf598ba0711ee880271db357197592b6966759445af3136999183981b8f4b71b6', 'extrinsic_length': 121, 'address': '5CBaW3ARvsJhcpSJcmjkfF97hiT1qVEdKUFXy5d2jg8p4nCv', 'signature': {'Ed25519': '0xdef901a0c23893efb2afa56ad67547b3012e269c34980bbd0c5fb010db7ecc5c6a37ca0ad37bae737e4e71a945cfa66270d02d1969074710f28e3f218c761f04'}, 'era': '00', 'nonce': 2737, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4096017}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744945368}], 'call_hash': '0x1e9c6ff57c5f4be1c804f887136c609e5e415f9b7cb276e32537f90905005fb2'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17337220 | Time: 2025-04-17T18:58:48 (1744941528) | Elapsed: 9898.68 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17337080 (0xd86b2e79d088122b2e3028728efae78c11175e2001cfe21c49cccaf74a5b7f6c)
Timestamp: 2025-04-17T18:44:48 (1744940688)
Extrinsic Index: 3
Failed Count: 75
Extrinsic Details: {'extrinsic_hash': '0x1726f8e9e6c3d7b2347153e9445eca1a71326849040412c31a554d0afcc8927f', 'extrinsic_length': 123, 'address': '5Hix6E1gbf54NvjQpRQgkPYmELzhFRfabQn78kBbWARLdPfk', 'signature': {'Ed25519': '0xbe75f3a255f71000527a2128a8ecc84a3ecece1642a0cbf9758d0bbac53255ab53eef7572def03c21617097d5b4c6f26bde259f42fa80cd6feca22966130910e'}, 'era': '00', 'nonce': 36246, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 13109847}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744940370}], 'call_hash': '0xc60838f6b46d97329b23204ae17ab617647ef1bcb8671df6a520987b88823ce8'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17336740 (0xd8da5b3325b39c375768118b71a91a0caf031b8fbe2ae984bc6296e75c2b6140)
Timestamp: 2025-04-17T18:10:48 (1744938648)
Extrinsic Index: 2
Failed Count: 76
Extrinsic Details: {'extrinsic_hash': '0x9134c38af195098ba327d3de1b858b9b0265590a54fb4f224ba573907279d1ac', 'extrinsic_length': 121, 'address': '5FccXrStQzMGdtKcVjpqrYMa71c6MuPPihCnegWgHiR7WUVS', 'signature': {'Ed25519': '0xc90bde7710d62bf7067ebb091e0bc0d7ffcd60bd865f5e1f7702c48fb1b4ba053571452d85ac36bfd97c3361f4bbf58b4a971d79fa6bf973eb7cc1fb79b71300'}, 'era': '00', 'nonce': 16382, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3344677}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744938180}], 'call_hash': '0x838646dfe49e57955ed125c452bc79ac429bbf44f5d08b3747ffea7072c40178'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17336390 (0x6b8591e7503517348d34566162a26aec0c3539850c517bdf4ae5a7a8fe40b9ea)
Timestamp: 2025-04-17T17:35:48 (1744936548)
Extrinsic Index: 2
Failed Count: 77
Extrinsic Details: {'extrinsic_hash': '0x16c6c809f52c6e0fd0dd633818dfd399a770832462ffcc02bdf36cc01f87cdf6', 'extrinsic_length': 121, 'address': '5G9PRc29J172uuSLazLLKb3uaE1rVJRtswMBb73FuTb3aNLw', 'signature': {'Ed25519': '0x845d2130c48ba92d06dbe3ebb821c2f3d86418d1bd1c544764f4b41d392d2bcb7dc218b51a759559cf5bba9fad6bf28fd8cd30a8c8f330ee44cdb689bd50ca04'}, 'era': '00', 'nonce': 4028, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 300967}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744935576}], 'call_hash': '0x1613debbbb9e86c7887c583f8897c51535f6508a5c7a32aa727a0bc97ccaf362'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17336389 (0x4ed5282a6d364b98966569da4278717b5922e913ee15e4e73f260f3506e238fb)
Timestamp: 2025-04-17T17:35:42 (1744936542)
Extrinsic Index: 1
Failed Count: 78
Extrinsic Details: {'extrinsic_hash': '0x52c179a2e68296a0907c395b2b503cc9763f340dc87a02ec3905f59f19efc5ba', 'extrinsic_length': 123, 'address': '5E6EVYgtLnfd9TEmEdD8D84utpJL82esmHtQjrkRXpHz2oNG', 'signature': {'Ed25519': '0xb2173d77d1d5b3bd3f9288a8f2da05591cb399cb902b8e106df788537fb37ee46e0dd4dc072d0018b5c095839a3e8006af64fc40490954cb8687f1c75abfb50b'}, 'era': '00', 'nonce': 16525, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 301302}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744935918}], 'call_hash': '0xd79e232f326dc96b6d91b835b05a872c072b05ba49354897e42b35888b9ff8c3'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17336280 (0x3f81fd4a26dce09cde109db77e46cd82f08b666abef8f3257bb6809c28e4719d)
Timestamp: 2025-04-17T17:24:48 (1744935888)
Extrinsic Index: 6
Failed Count: 79
Extrinsic Details: {'extrinsic_hash': '0xa1351abf92485c0747dea7fd228abd1daf0db5872f0d27780b397d867a95e8cb', 'extrinsic_length': 121, 'address': '5DKY8h1JUq5hQSx1n2Uon9foLEpPYLD7X8fxnQ9YHdrrVgJt', 'signature': {'Ed25519': '0xc6d5c7cae15d09197ee9903197f0e622039e94688936ed6827ff675bb94ba29554766a5b632f771bc4805ae2ab7743b1d3154981411a3e63fde68de1cf0c0002'}, 'era': '00', 'nonce': 4005, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 300361}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744934964}], 'call_hash': '0x47296e1aae1778e0c0148e636bb9775f43e416c6581f8d1a854ed56b59b7f6fd'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17336220 | Time: 2025-04-17T17:18:48 (1744935528) | Elapsed: 10935.38 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17336164 (0x26667dd0fba895d7845c28a0415b0503467e8fd2d50d591ca1abaf3f10df3e1f)
Timestamp: 2025-04-17T17:13:12 (1744935192)
Extrinsic Index: 5
Failed Count: 80
Extrinsic Details: {'extrinsic_hash': '0xdfc417437560d933436bb581a561d4e689f67900c7bbbf70f1c351026969a2c9', 'extrinsic_length': 121, 'address': '5CcYwFtLyB86M69JNK4j5Fr3B2RyfmEkgm4Qmypr4e96N6wb', 'signature': {'Ed25519': '0x2fdcb800137860f05c8d57bf20c8e180ef71a20778942ee9e3a5ac2a85294248a3b722157d28f1692ed59e1b770d2d405f02ca119d02fe14a4427a7c5a964806'}, 'era': '00', 'nonce': 13463, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 18725613}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744934658}], 'call_hash': '0xef701b402ececd36c6c4baa1d75d900fb832eefebd910668704d2541b5129c1f'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17336147 (0x43360ce4c76ad35931e47d4386cda42366ea8826bf8b10fee7d8331ab881f2a3)
Timestamp: 2025-04-17T17:11:30 (1744935090)
Extrinsic Index: 7
Failed Count: 81
Extrinsic Details: {'extrinsic_hash': '0x2a1b6cb1831e262712b607fff89ac9d581813311e2cf87d6547b1ca7dec12386', 'extrinsic_length': 123, 'address': '5CYs68RhDd1ctjewvemrGQ4dMERLJVPbXmrpHWgmVTAbAmej', 'signature': {'Ed25519': '0xd7ad4c877503a76c91c4bd41f3c6e0821c322aafa2f0bc6c5bc9e6be6c4405d4ce80c596844a6a3fada8db61953f0127cc9c96fdd6199af9887552781294260c'}, 'era': '00', 'nonce': 31695, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1507083}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744934382}], 'call_hash': '0x2c9a20719abcc032cc1d1e848891ecffc93fa42836d35551898dad2ab4bc2511'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17336145 (0x44b8b1aede587c6cef3d0990450530a731d1521ff6fb04660e4d634c4bd81916)
Timestamp: 2025-04-17T17:11:18 (1744935078)
Extrinsic Index: 2
Failed Count: 82
Extrinsic Details: {'extrinsic_hash': '0x43ee2e8b67f7f36a07414687d96b143255ea556dcf970d92df1c97f910d83569', 'extrinsic_length': 121, 'address': '5FaK7s8vCecG2Dr67biYJZr8fCkCWexT9qjsdoi64ofecp8f', 'signature': {'Ed25519': '0x9e57a68ff24a4a2f457e14a0ec424d3335ce304e49cdd8f2c007edf56963421c092aa4fcf0e6a7d34fa407b8f44e673719d0cf8846a52293ffc31c7849c96e03'}, 'era': '00', 'nonce': 10135, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1507311}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744934790}], 'call_hash': '0x18e877745410d3cf06d39f8e0fcc30e8ff3563ac05a7d4ac5b870c538dc65876'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17335609 (0xfa4eac7c3951da32f9302bb59d916923baab199fe4d61b20883a31f383059834)
Timestamp: 2025-04-17T16:17:42 (1744931862)
Extrinsic Index: 3
Failed Count: 83
Extrinsic Details: {'extrinsic_hash': '0xe7283630812ea2132ad89b9ff6b94f3c73c62542b2d4d331400b408c4e70689b', 'extrinsic_length': 123, 'address': '5E75J3FyyXQ6sNZjBWE8Fj9bHpJxbtftx26Ka8rzUjrW3NgL', 'signature': {'Ed25519': '0xf92656cd465b3373b3abfb16172883ad824726bdba4162e39e0a613928038a1828fbf598ac2eb81665e568dba5f7543b480349f692b62eb5726969e01cf7750d'}, 'era': '00', 'nonce': 23832, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 41322910}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744931646}], 'call_hash': '0x040c02aea11d27d271f44358a49ff9732cc20e0eeb118545ff1f34cce782fed3'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17335606 (0x1af1603d2b47d7f38cc0f8e892ba56eeeec593d4fa574c47bb54ed65494cf5e3)
Timestamp: 2025-04-17T16:17:24 (1744931844)
Extrinsic Index: 3
Failed Count: 84
Extrinsic Details: {'extrinsic_hash': '0xce3462a5b14c2c9505e8121e0861a57bc232281bcea3f107060d012e41453208', 'extrinsic_length': 123, 'address': '5CUFnsChzQWpN7WDUbQQbXWQL3YbigLVNoDHKpAwoLVJza2a', 'signature': {'Ed25519': '0xd1a22b6bc610ce0222a0d88565b05c6757078a016f0724a623f54cddee73792db1eedefd4fafb177a3be17a0bb36985c4b72f2995f54d3eb5e3488bfa7557b0f'}, 'era': '00', 'nonce': 17807, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 41301665}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744931772}], 'call_hash': '0xcb84c97150e960aff0e707f9569c958ebe483dd808853988eb07e04417fc130e'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17335606 (0x1af1603d2b47d7f38cc0f8e892ba56eeeec593d4fa574c47bb54ed65494cf5e3)
Timestamp: 2025-04-17T16:17:24 (1744931844)
Extrinsic Index: 4
Failed Count: 85
Extrinsic Details: {'extrinsic_hash': '0x7ad274f1dc6c2f6bb7a84297aac3c5fe4650e9b289489864e37d712a8a6e169a', 'extrinsic_length': 121, 'address': '5HB8pHCdkzuJ8Y8AoAKKmAVGEMAebtbNfLX4q3CXnoNxuQdr', 'signature': {'Ed25519': '0xf043b0d24a009fea2fb827720973776445c187942f90f69c47e09e98d0400caea8d82196961fd9973fe2388b6306d86eafe6f800115cf12d56fb44d6688fb006'}, 'era': '00', 'nonce': 15678, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 36902083}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744931676}], 'call_hash': '0xad5263eec1c7fb34ba3b306c596eb94769e586574e9b15ce1566aca105aea40f'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17335605 (0xe5cebb011b0adf9c93ce31790597e664d9c59886a2db477332c292e503b2e53a)
Timestamp: 2025-04-17T16:17:18 (1744931838)
Extrinsic Index: 4
Failed Count: 86
Extrinsic Details: {'extrinsic_hash': '0xa5c97b090b1ebbe1cd56fc307a9e6917305ff7558c81cdef28bb38a6d4174424', 'extrinsic_length': 123, 'address': '5Ed3j5Ki2pywfSsaNFCfDuSaKMnNZqt4xQKznQd2QTpwkzhT', 'signature': {'Ed25519': '0x18c23245c50c44c3c4dc3bf4c80a58882d0b7b7ae04a525c2f3897a05c7ea894e62ed23b44f7b1e74d980708b65c9d88743d6cc9b3b4702b42e6459155d07200'}, 'era': '00', 'nonce': 17208, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 40440830}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744931742}], 'call_hash': '0xa9e48d371573dc4a568cb95be1a3574181df17490eb64775f77815f32ca9f801'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17335384 (0xd5c7739dae753fe16d3618cc5466d6aeaf1e179f4c74b2035581983470065901)
Timestamp: 2025-04-17T15:55:12 (1744930512)
Extrinsic Index: 7
Failed Count: 87
Extrinsic Details: {'extrinsic_hash': '0x6c796109b5a3aed951b4ad7832b49a35ab90018b5ffdeb1a5a301dbb2665cce8', 'extrinsic_length': 123, 'address': '5Fpdz38FHNRXofeFAmoT9PuCDxbVFQcVzPWR1qw77RXgwcEn', 'signature': {'Ed25519': '0xab90587a6d384d5f371f70fdd7a00daf50158d48e77d2cdffe9b5af97141d5db3efd086a004ab9d5adea48e252e9956912a3302d5817407045ba0f9d5d301d00'}, 'era': '00', 'nonce': 33021, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 36901296}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744930290}], 'call_hash': '0xca08c00712327e42d94a69de107221041406927d70ad0830956a7d634023e082'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17335220 | Time: 2025-04-17T15:38:48 (1744929528) | Elapsed: 12029.78 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17334832 (0xab76e2f5d3fd19e4f6f9a6922e183b1ab302a09fdc9be06b635506f3ceb90980)
Timestamp: 2025-04-17T15:00:00 (1744927200)
Extrinsic Index: 3
Failed Count: 88
Extrinsic Details: {'extrinsic_hash': '0x34496e0515e5eef7bfe60f32fe0c46f74be15430f973a53ce8ce88d74d5511c9', 'extrinsic_length': 121, 'address': '5F8DzfhGfACpLDfMCG7cPfeKpR2HLFSZrZSMwWHwYX5RBeJ3', 'signature': {'Ed25519': '0x72b4a0b426269f8c2873ee707f19accd5024dbf870a33a8ad90bf1db2a43e98ee934a5d58b90020c0f7eb9859b48ed31401c697fc539bd23cc635418f60cdb0f'}, 'era': '00', 'nonce': 3612, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 555917}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744927122}], 'call_hash': '0xdad842f408ffa0a9141252cdb77a98770710eedfe919204fc821416c3ee8951b'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17334830 (0x55397fa1834a1daebaaa85a47cd79ae28c4e7f51205a424f43c078cd26442aaa)
Timestamp: 2025-04-17T14:59:48 (1744927188)
Extrinsic Index: 9
Failed Count: 89
Extrinsic Details: {'extrinsic_hash': '0xb6b651535f1f93cb293457b6150021df7ff272568021538af10c7e7c611cecba', 'extrinsic_length': 123, 'address': '5GHQnpQKtAmEbQD1a9qXVqmFZjzeEMQWzeazFbAM4xmCmptm', 'signature': {'Ed25519': '0xf3bba4fe4d510b723f4d29f3984587e89583eff39605f534706e1fb2439e496e229d3e6374dd28ec5f06453083dddad50843ed90735e19f091716e8b01c31804'}, 'era': '00', 'nonce': 24711, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1496414}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744927116}], 'call_hash': '0x94975a1e240a7d17c15dd578ee8f04b5a1d7a28ae9d8ff9a65fd4298c431ea30'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 9, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17334828 (0x505a6dce368d284281dff57bcd853c02fbdc404995201ddfabb08033d957d2ba)
Timestamp: 2025-04-17T14:59:36 (1744927176)
Extrinsic Index: 4
Failed Count: 90
Extrinsic Details: {'extrinsic_hash': '0x6883d5bc03c768b76ea04692f293ff4b13d3481548f0603ed768c70bd0c84ba9', 'extrinsic_length': 123, 'address': '5EmviF9Pm9taBsqtoN9YrznLh9ciZ2o7uqZUpiJ4WDxmN1Lf', 'signature': {'Ed25519': '0xb205bbd37c3337482b72a2fdd52b1f5e02f08fb8329437e3d085a19f06cd58c850cda93d9b0ef9ce264f22c3de839b0447fbd65b08fa101a2743ef6391f8db0d'}, 'era': '00', 'nonce': 23197, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 28316257}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744927053}], 'call_hash': '0x8c1227232e2c1ec01d49f2eab5baf6ea84c60e8dae56157b5d1f0d80d9c170c2'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17334465 (0x19ceffb9c3e5169a4931188bec991a1a85ad75443c13c3492b3efaa040da479b)
Timestamp: 2025-04-17T14:23:18 (1744924998)
Extrinsic Index: 4
Failed Count: 91
Extrinsic Details: {'extrinsic_hash': '0x25a308f36573cc391711815435f1948a28aaf3254d19913790cfc75d53fcea37', 'extrinsic_length': 123, 'address': '5DAP17VN9MtKopXJpS7pDbagpVs5Xe2z1SGViNBzccCaxHBG', 'signature': {'Ed25519': '0xbbc6bb7393c255b662d36a1ff3acbae2421f172513b9e22ccd4ea9f9aa040b56a6320857a6699010e2166a86ba9b5abfe8ed76f59267ff9b142a80fb98e5010f'}, 'era': '00', 'nonce': 28286, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 23916390}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744924355}], 'call_hash': '0x83c332692af4441a8b8dbb1c90473923f193e6ccd163bc3a2ebee58b725eec4d'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17334220 | Time: 2025-04-17T13:58:48 (1744923528) | Elapsed: 13386.59 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17334089 (0xef13a80eaace1800204f95c5e2a121a9c12e848971737e6f6aeb96a3e15f4752)
Timestamp: 2025-04-17T13:45:42 (1744922742)
Extrinsic Index: 7
Failed Count: 92
Extrinsic Details: {'extrinsic_hash': '0x1f680bae679b5ce480f49b2b1674dc518f42e531d2fbf2fc1157a936be893868', 'extrinsic_length': 123, 'address': '5CzsU2iMevWDyxdKWcJULyuToqLZoVjm1PoHtneUUMKLpbSt', 'signature': {'Ed25519': '0x08f80836520d2d978d30f7d3fed39b4093e12fa90e1c47446fd6ab582f3a2a37a97b717d423a4866bdd00e232d4715dc5404b47445e958cc4e10305dd98a2a07'}, 'era': '00', 'nonce': 70363, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 7734248}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744921760}], 'call_hash': '0x0f0d45afc0babfe876780116e7a0a411359fdef80de2864e4918fa4b7e4811cd'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 7, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17334085 (0x83afa370fe2883c6c195d37930806c29ac0106ac861973c11a6533021270e6ac)
Timestamp: 2025-04-17T13:45:18 (1744922718)
Extrinsic Index: 6
Failed Count: 93
Extrinsic Details: {'extrinsic_hash': '0x54e73879b43fcc466e9fa0dca878c987ea788df6798c32f7a5300b1ac72c9241', 'extrinsic_length': 123, 'address': '5DPrGmAtPj6cHgeHQY8L6oZyu19vFCLt3jbnHLeDLHtfDNvZ', 'signature': {'Ed25519': '0x4ed187a30b5059c085b83c7ec88ac2dbbf9e17c0587fccef220ec86cc6e5a8b42c6bfcc0ca947aaf9be02b9a7190068c4279cd6ee5fc1a30f4a2838f5e43b408'}, 'era': '00', 'nonce': 32739, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 7734720}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744922276}], 'call_hash': '0xcb938cc7b970778bc94c8c1bb00598f2e0818b697334ebd281ff13c848bc9302'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17333917 (0xa5a8eb34434fff96c296f7db8bbd9900920fa1aaac2b29a04252581dba6af616)
Timestamp: 2025-04-17T13:28:30 (1744921710)
Extrinsic Index: 2
Failed Count: 94
Extrinsic Details: {'extrinsic_hash': '0xa09fa8f71854e62777f274074197379c78679d3204f7f972ea94a01b8ca3a5b4', 'extrinsic_length': 121, 'address': '5Fu4YG3K4nbswRqqzdo1gejUFZWhKs7hY4WZShXqLSBiwE6D', 'signature': {'Ed25519': '0x1524fed6241e0a23d1076d02aa20c962721bbb873b4325c5dd4cc8b315e4ad4d3b8080ab9eb4de64baa3a47bd02458f592dcf1a1df4453c665efbf28068b0e02'}, 'era': '00', 'nonce': 3862, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 881636}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744921056}], 'call_hash': '0x528553a7191f752a6ccf34bbd0348516f55886cb33a1fb48c19887ef365de447'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17333714 (0x1c860a1c58277d39c23db55cae29a02ec0c00b20dcf0cf2d19c5be96dae99638)
Timestamp: 2025-04-17T13:08:12 (1744920492)
Extrinsic Index: 2
Failed Count: 95
Extrinsic Details: {'extrinsic_hash': '0x83a8569ec52d281895141748be4005d644b7820d358a97f29cd0c0b45f19ca07', 'extrinsic_length': 121, 'address': '5Eca4ZhLUJW8HzidbA1LhpP26fBkZEuXiWW1paz6CKL8bcbc', 'signature': {'Ed25519': '0xc7b0ae23091cfdce154a277d191533cbea32bb460031a947bd4d4b57f525579a21f0deafb63b92de2054380bc661fa1af36a609f5c990fe6f52bbe19264f1909'}, 'era': '00', 'nonce': 11841, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3990093}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744920324}], 'call_hash': '0x416156c44b8bc4edc85197d57d7b9852c2ac461deb45dcffc7582372a760e101'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17333440 (0xe9480853c62cd8b25a6062a6f600a65e0832c1ec9571c0f41b0355d33c6a8628)
Timestamp: 2025-04-17T12:40:48 (1744918848)
Extrinsic Index: 6
Failed Count: 96
Extrinsic Details: {'extrinsic_hash': '0xc870c431e16f5931af1db1ef31c2033ca0c5407335de8adfdb2bcf3ac171119c', 'extrinsic_length': 123, 'address': '5HXbGZWjXEqvwEBqWrdA1SrrhJd1Rc2so7HtpHez66sEUELx', 'signature': {'Ed25519': '0x970fa8338a5c05d2a703e1e624506d2c8be51835c5c90d6e9ab23c83fe95777baa9a3922585847186863ea1894c1a741e7f0c532cd488a2b0e28db1422ad8f03'}, 'era': '00', 'nonce': 42548, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3630313}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744918188}], 'call_hash': '0xdc8c9d69f11cb3f059471d024a892102ebc5a51a3f2001bd63439e6edfe6b821'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 6, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Progress: Block 17333220 | Time: 2025-04-17T12:18:48 (1744917528) | Elapsed: 14575.92 seconds
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17333134 (0x9a748c27ea51bc67ef8313d31ff0cc2f2dc91b63185218a55a94b54c4bd51c1b)
Timestamp: 2025-04-17T12:10:12 (1744917012)
Extrinsic Index: 2
Failed Count: 97
Extrinsic Details: {'extrinsic_hash': '0x9f466ea18a919b4307a6a24dacd003b4ad77eac9cc3ba31a2342bc9203e24f5c', 'extrinsic_length': 123, 'address': '5HLoXFHmYn56CjAkPhTWiWPBop1YPmGNbTdmDNmwepTthXm8', 'signature': {'Ed25519': '0xb397409a16aed9bd8e418e5d46d625e96d838a4e4fa9cfa2848d1d929d6029b7890228cb1ebbf0a7a027222f49f5a3bc287919fc724e4e2f311c7b95dc41e30d'}, 'era': '00', 'nonce': 35058, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 2370552}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744916796}], 'call_hash': '0x0f63d3be385ee68bf5beda0c149f27be87804600954827bd8a3960204b75424b'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17333109 (0x0e362fee91480ac4895a33ec2c544409785ae27790030615ed9ffa0082fc94e7)
Timestamp: 2025-04-17T12:07:42 (1744916862)
Extrinsic Index: 3
Failed Count: 98
Extrinsic Details: {'extrinsic_hash': '0x21becd361858d99875c0ef7dc82a858a57f8f5aca2bb7bb2e44cc349778f77ba', 'extrinsic_length': 123, 'address': '5D5BT16rEYYedUWwFfyw8nKosvwnaxJVjzQpdnE3eYsbKxpz', 'signature': {'Ed25519': '0xfa0a245a102f8a4c5d7192e1df2171e53dc7b6eaf7f4c589f3e90680497b8a00a13f670e5a8d91eee79c6815f32341cd83a32f204c172a4599289f7fe24f6606'}, 'era': '00', 'nonce': 17111, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 15546452}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744916660}], 'call_hash': '0x33d8c5d1f610900724f8a18f6dc4980a39c00581b48727badf579b7d6072386a'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 17332910 (0x7b73d32650d11c57d030c003e879d09dc139664b18c14786ee94a3b370d564f0)
Timestamp: 2025-04-17T11:47:48 (1744915668)
Extrinsic Index: 2
Failed Count: 99
Extrinsic Details: {'extrinsic_hash': '0x56e3f58ea62659f35c58b1bd19742b83acfacfff7218bb42d0c4afd09091bbf9', 'extrinsic_length': 123, 'address': '5Co4A3TDHoP9rYCvXiUgT4JET6JPUpERg9CKC5N2uou2Ugwh', 'signature': {'Ed25519': '0xb3e6fcb9069d3ed623db1e856be4c9743fdc30823a5b5693dd60b4a3c091c07e5fa4cb4d0a2632b76249114faaacbb4eceaa37e85246bb31076a00fc81484b0c'}, 'era': '00', 'nonce': 27383, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 4847803}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1744915603}], 'call_hash': '0x5d7daad1f567b4790e2ab822e98b451df3dd73d7a118a907c947d7f2fdda9971'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 2, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
Here's another instance from today:
2025-06-05 03:01:42 [+] powerd: 2025-06-05T03:01:42Z info node uptime hash hash=0xa778515aed22253fef4395c5aa696c992c4c292ca29222e190efb53cec4e1aa0
2025-06-05 03:01:38 [+] noded: 2025-06-05T03:01:38Z info utc time from tfchain: 2025-06-05 03:01:36 +0000 UTC
2025-06-05 03:01:38 [+] api-gateway: 2025-06-05T03:01:38Z info connection restored url=wss://04.tfchain.grid.tf/
2025-06-05 03:01:38 [+] api-gateway: 2025-06-05T03:01:38Z info unhealthy connection closed url=wss://tfchain.02.grid.tf
2025-06-05 03:01:38 [-] api-gateway: 2025/06/05 03:01:38 Connecting to wss://04.tfchain.grid.tf/...
2025-06-05 03:01:38 [+] api-gateway: 2025-06-05T03:01:38Z info connection unhealthy, attempting failover url=wss://tfchain.02.grid.tf
2025-06-05 03:01:35 [-] noded: 2025/06/05 03:01:35 Connecting to wss://tfchain.grid.tf/...
Checking the block reveals the failed uptime event:
It's interesting in this case that the node failed over from one tfchain node to another before the failed uptime report. Perhaps a coincidence, but it could fit in pattern with the large amount of failed reports following a tfchain node outage I documented above.
After investigation:
I found out that the error might not be from zos because actually zos printing the block hash means that the responsibility moved to the blockchain so getting InvalidTimestampHint or block rejection for any other reason can't be tracked down to zos.
As call for UpdateNodeUptimeV2 doesn't make sure about the block finalisation so if the block gets dropped ( because of any error) before finalization, the transaction never finalised and never reported back so we can retry or take action and waits for the next cycle after 40 mins.
Maybe if tfchain returns after the finalisation we can trigger back the uptime report.
The second thing is that it looks like it's happening is that blockchain maybe it goes into a congestion period, which is more probably what causes the "InvalidTimestampHint" also the comment here adds more confirmation about that
is this still happening?
is this still happening?
Yes, here are some recent examples:
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 19404835 (0x028cd368b497479878450572e1ef7c84abbbfde94bb15c0336a82cdd44933db2)
Timestamp: 2025-09-08T16:40:48 (1757374848)
Extrinsic Index: 1
Failed Count: 1
Extrinsic Details: {'extrinsic_hash': '0x19c77f88e3e989f0fee910d65a47725756f04c695309f24ff84983fc232a4858', 'extrinsic_length': 123, 'address': '5EMQnW4hvkK7pXJ33RV9PcxASDF289Ha8WJBZKrh5sZTnhjY', 'signature': {'Ed25519': '0x464a7f2473b604a2e7957240af19b958a507d1899bf699e00d39e74c57e4888cc4eb5cfe5a521c36c1f6dc12ea6d967749b6375c43f521a82d7fb7c31c191407'}, 'era': '00', 'nonce': 38615, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3371406}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1757373390}], 'call_hash': '0x508275e06ccb4c0718e9cf90fd6075258aa0dcb70f559321ced62c3c5cbcca89'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 19404192 (0x3274ecf158fa0d67c86664f92bc121c59fd5320358d26648989032e3cafc2e75)
Timestamp: 2025-09-08T15:36:30 (1757370990)
Extrinsic Index: 10
Failed Count: 2
Extrinsic Details: {'extrinsic_hash': '0xe85cde7a6d7da81f33c13b19aeab8310ddff669abb1e815231332580a858368e', 'extrinsic_length': 123, 'address': '5EMQnW4hvkK7pXJ33RV9PcxASDF289Ha8WJBZKrh5sZTnhjY', 'signature': {'Ed25519': '0xefef4a0f64866493ea42f51128a697ccb0ea57182dc678f5c239fb1b665801988d07003fbe57f77c93075e4cc76ab7657553a7244cec64fcdd79e0aaab631903'}, 'era': '00', 'nonce': 38614, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 3368898}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1757370882}], 'call_hash': '0x4c228c79347d936b12d4ebece7e803a36aeaaacf4fd45ea521533c219e14f785'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 10, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 19403300 (0x4331759c24b8fc4d9afe3b5d2ef3843e23c66ca7edd964bf6b156c8c69a390c1)
Timestamp: 2025-09-08T14:07:18 (1757365638)
Extrinsic Index: 4
Failed Count: 3
Extrinsic Details: {'extrinsic_hash': '0xfba10523d457bc0f407b9442319941513aa7dd3ccfd769e7c01bc3a648902de0', 'extrinsic_length': 123, 'address': '5G5Wb33tzF3BpeH495Z8XJaM4ZGqJ3F5PCQhkg9NiYseSgp6', 'signature': {'Ed25519': '0x3de9d8400f29d7c9b5f9565bf75896a9649fb1cf82480009ff6c835b948f0e287c26babb5740cdd1107063726ec64316177a0a71d04d59e07a07dd41d3a6370a'}, 'era': '00', 'nonce': 30548, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1668116}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1757363316}], 'call_hash': '0x1a872b98d129577e0855de42dcb4d94649968388e7315faaf84eee46b817c42f'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 4, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 19403300 (0x4331759c24b8fc4d9afe3b5d2ef3843e23c66ca7edd964bf6b156c8c69a390c1)
Timestamp: 2025-09-08T14:07:18 (1757365638)
Extrinsic Index: 5
Failed Count: 4
Extrinsic Details: {'extrinsic_hash': '0xc3268b497e26977ae3d70ac09d426784b4bcc05f961075f9a2cdf88d896cfec7', 'extrinsic_length': 123, 'address': '5G8nRakBLKKMZhP8kqqSy4aZxTqEtPcmKPShKTusFVS87QtN', 'signature': {'Ed25519': '0xc6da79ed581be6fbd823887f17c697834537d3caa3a3efc91bae00522f6927c0db74f947e12e6b61f3d8957bc1d26db63c7265670d25a51a512c5dfa2ea26805'}, 'era': '00', 'nonce': 33985, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1669877}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1757365218}], 'call_hash': '0xe23cd6c07d8a1bcae43cd190117102d3127c419ff0301bc92bb5bc154f1e1bc5'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 5, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 19402521 (0x6a5cb1c19e5d87b959732c2ef373e30964b5d04c5eb1eb21581e2c69d9b70d1e)
Timestamp: 2025-09-08T12:49:24 (1757360964)
Extrinsic Index: 1
Failed Count: 5
Extrinsic Details: {'extrinsic_hash': '0xeded7023a28173b31299e9b7df476a1b97fd804e908ca2538a58bf295187f864', 'extrinsic_length': 123, 'address': '5G8nRakBLKKMZhP8kqqSy4aZxTqEtPcmKPShKTusFVS87QtN', 'signature': {'Ed25519': '0xbc0d679ae3cb6a6d7387ed463423979e2df945abd1ac61df515e724ca525be192489f5b1874ff6ada81592c4dd9b82d050efc8d600594a2d9c101d64be590304'}, 'era': '00', 'nonce': 33984, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1665490}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1757360832}], 'call_hash': '0x4aa30b5420540696fbc18365f47222f6bb4b2ccb2ded65bd3a451bff2a2610bf'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 19402513 (0x259148c1ee8f461b846d0f850054c24452d9c20211414d7afb3b565cc2508161)
Timestamp: 2025-09-08T12:48:36 (1757360916)
Extrinsic Index: 3
Failed Count: 6
Extrinsic Details: {'extrinsic_hash': '0xb27f4f309012c3ab12dc6f00ce32868ac1743e4654e97d1bc7256f1f71aec1fc', 'extrinsic_length': 123, 'address': '5G5Wb33tzF3BpeH495Z8XJaM4ZGqJ3F5PCQhkg9NiYseSgp6', 'signature': {'Ed25519': '0x8630d4427858536ab6dd82c0995f9a069db2487c2f4b7794422176530f7793bcd9b0163faf59bd2bf1bc774d286107139f295d38ad42cb9bd6d50a2311ff1c0d'}, 'era': '00', 'nonce': 30547, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 1665614}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1757360814}], 'call_hash': '0x3030ceb0d310b8d02db2bcbab24f1ef13d2cba520c4b8803f286d6029031b14b'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 3, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
--------------------
FAILED UPTIME EXTRINSIC FOUND in block 19402397 (0x37778aad5c824d3c7ebcf886dd1ae0780f80c56141863c4f7510c592a5263e5d)
Timestamp: 2025-09-08T12:37:00 (1757360220)
Extrinsic Index: 1
Failed Count: 7
Extrinsic Details: {'extrinsic_hash': '0xe35dcfdc35e0b7e962218387acc918e0bb832fbc857d7225398beba3e600c5ce', 'extrinsic_length': 123, 'address': '5CEwHwPgketSYTeCnny1uZc7CENvYDfPiXgf8A2CiBdPdLjy', 'signature': {'Ed25519': '0xac2f4d27bd07cc24f95a99bb0e52d9a7864e75f7bfbd68fa09abaed8067334d105ae6e057a4f297d016feb53f6f6f535fb9473709c438ae8026c2b2157b93603'}, 'era': '00', 'nonce': 41369, 'tip': 0, 'call': {'call_index': '0x1926', 'call_function': 'report_uptime_v2', 'call_module': 'TfgridModule', 'call_args': [{'name': 'uptime', 'type': 'u64', 'value': 724729}, {'name': 'timestamp_hint', 'type': 'u64', 'value': 1757359968}], 'call_hash': '0x07544940bf89b1eb44d86886674db5fc1ad114f525dec35701e4696ef809482c'}}
Failure Event: {'phase': 'ApplyExtrinsic', 'extrinsic_idx': 1, 'event': {'event_index': '0001', 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}}, 'event_index': 0, 'module_id': 'System', 'event_id': 'ExtrinsicFailed', 'attributes': {'dispatch_error': {'Module': {'index': 25, 'error': '0x72000000'}}, 'dispatch_info': {'weight': {'ref_time': 242879000, 'proof_size': 3919}, 'class': 'Normal', 'pays_fee': 'Yes'}}, 'topics': []}
--------------------
look like chain err @sameh-farouk do u have input here?
ok, that shows a big difference in the timestamp between the chain and the time sent from the node with gap around 2-4 mins diff we need to check if the node itself has correct time at this point or maybe somehow locking is happening for too long
i put some logs on devnet nodes to check the time taken to submit the uptime report maybe this helps identifying the root cause of the issue
we did some changes related to this which is deployed on devnet @scottyeager do u still face this issue on devnet?
