Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
8fdae22
Add witness-to-validator migration design spec
chiliec May 19, 2026
fe97ac1
docs: add witness-to-validator migration implementation plan
chiliec May 19, 2026
d16cf4e
Add validator_compat module with alias dicts and translate_kwargs/pic…
chiliec May 19, 2026
94a7677
Rename witness ops to validator in OPS/VIRTUAL_OPS and register old-n…
chiliec May 19, 2026
9719974
Rename Witness_update to Validator_update with deprecated alias
chiliec May 19, 2026
7c917c2
Rename Account_witness_vote to Account_validator_vote; translate witn…
chiliec May 19, 2026
0a0066a
Rename chain_properties witness fields to validator; translate old kw…
chiliec May 19, 2026
4ac00d2
Update chain_properties test to use new validator field names
chiliec May 19, 2026
cbb545d
Rename witness_api methods to validator_api in vizapi/consts
chiliec May 19, 2026
5c10018
Add NoSuchMethod exception for method-not-found RPC errors
chiliec May 19, 2026
3fdce93
Dispatcher: translate old method names inbound, fall back to witness_…
chiliec May 19, 2026
e34c88f
Rename viz/witness.py to viz/validator.py with Validator/Validators c…
chiliec May 19, 2026
47e86e6
Add viz.witness deprecation shim re-exporting from viz.validator
chiliec May 19, 2026
87a306b
Update viz/blockchain.py docstring examples and canonicalize filter_by
chiliec May 19, 2026
61ccf15
Make _canonical_filter handle list filter_by inputs
chiliec May 19, 2026
f6d56ed
Update test_blockchain.py to use validator_reward op name
chiliec May 19, 2026
90d54f9
Update viz.py TODO comments: witness -> validator
chiliec May 19, 2026
ce44d05
Add parametrized coverage drift tests across all alias dicts
chiliec May 19, 2026
dc60e56
Mark test_versioned_chain_properties_update xfail until testnet image…
chiliec May 19, 2026
e16ccef
ci: dedupe tests workflow triggers
chiliec May 19, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: tests

on: [push, pull_request]
on:
push:
branches: [master]
pull_request:

concurrency:
group: tests-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
Expand Down
Loading