You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix timestamp and system operations display in linera-explorer. (#4664)
## Motivation
I am seeing errors in `linera-explorer` related to timestamps. With
those fixed, system operations are still displayed as "Undefined
operation".
Here's what I tried:
```
cargo run --bin linera net up
```
Then I pasted the exports, made a transfer from the admin chain to
another chain in my wallet, and started the service:
```
export LINERA_WALLET="/tmp/.tmpyTcUrm/wallet_0.json"
export LINERA_KEYSTORE="/tmp/.tmpyTcUrm/keystore_0.json"
export LINERA_STORAGE="rocksdb:/tmp/.tmpyTcUrm/client_0.db"
cargo run --bin linera -- wallet show
cargo run --bin linera -- transfer --from 9f2047e18cd35c7509fc118c1c1df6a88d936d450ac0c2ab4752b6cf51f81f1c --to 03479ab664451306a9bad6428f9b451527009c489fe21ade5e977411931d6942 0.1
cargo run --bin linera -- service --port 8080
```
In another tab the indexer:
```
cargo run --bin linera-indexer -- run-graph-ql
```
And in a fourth tab the explorer:
```
cd linera-explorer
npm run full
npm run serve
```
If I then open localhost:3000 in Firefox I get a CORS error; in Chromium
I get TypeErrors.
## Proposal
With Claude's help, fix timestamp handling and at least show that it is
a system operation.
We should improve this further, so that this can be viewed as a
transfer.
## Test Plan
I tried it locally:
<img width="2616" height="1543" alt="image"
src="https://github.com/user-attachments/assets/89c2fbe3-a66e-403f-b560-8f9e67efa451"
/>
## Release Plan
- These changes should be backported to `testnet_conway`.
## Links
- [reviewer
checklist](https://github.com/linera-io/linera-protocol/blob/main/CONTRIBUTING.md#reviewer-checklist)
0 commit comments