testnet-v1.76.0
hinthornw/trustcalltestnet-v1.76.0Jul 21, 2026by ebmifa
AI Summary
This release introduces a new RPC Store for gRPC indexes, requiring a one-time resumable reindexing process that can take up to 3 hours. It improves balance indexing, standardizes the index database format, and stabilizes new filtered subscription and list APIs. Additionally, the Sui protocol is updated to version 130 to fix object-funds withdrawal blocking issues.
Key Highlights
- New RPC Store for gRPC indexes with background historical indexing.
- Stabilized filtered List and Subscription APIs for checkpoints, transactions, and events.
- Protocol v130 update improves withdrawal logic by using net amounts.
- Validator config `admission-queue-bypass-fraction` removed.
- New `grpc_request` tracing target for debugging gRPC calls.
Breaking Changes
- Removed the `admission-queue-bypass-fraction` validator config field.
- New RPC Store requires a one-time, resumable reindexing process.
New Features
- Filtered subscription APIs for checkpoints, transactions, and events.
- `grpc_request` tracing target for full nodes and `sui-kv-rpc`.
- Pipeline cohorting to prevent lagging ingestion from throttling others.
- `sui client chain-identifier` now displays both Base58 and Hex formats.
- Move package system accepts both Base58 and Hex chain IDs.
Full Release Notes
:warning: This release introduces a new RPC Store for gRPC indexes, requiring a one-time, resumable reindexing process. Startup includes live object reindexing (which temporarily delays HTTP availability), followed by background historical indexing that does not impact normal RPC operations. The change improves balance indexing, standardizes the index database format, and enables the new filtered List and Subscription APIs. It could take close to ~3 hours for re-indexing to complete upon startup. ## Protocol #### Sui Protocol Version in this release: `130` https://github.com/MystenLabs/sui/pull/27157: Protocol version 130. Unsettled object-funds withdraws are now recorded using per-account net amounts from transaction effects instead of running-max withdraw amounts, so withdraws that are offset by deposits in the same transaction no longer block other withdraws from the same account within the same consensus commit. ## Nodes (Validators and Full nodes) https://github.com/MystenLabs/sui/pull/27203: Improved the error message returned when a transaction's address balance withdrawal exceeds the available balance: it no longer exposes internal accumulator object IDs, and now names the coin type and owner address and clarifies that Coin objects owned by the address are not part of its address balance. https://github.com/MystenLabs/sui/pull/27149: Removes the `admission-queue-bypass-fraction` validator config field; all transactions are now admitted through the gas-price priority queue. The removed field is ignored if still present in a config file, but should be deleted. https://github.com/MystenLabs/sui/pull/27062: Validators automatically recover from checkpoint and transaction forks on restart when the network has certified the canonical outcome and a new binary version is deployed; forks caused by the running binary version, or without a certified outcome, halt the node awaiting a corrected binary or operator-supplied fork recovery overrides. https://github.com/MystenLabs/sui/pull/27238: Full nodes (and `sui-kv-rpc`) can capture decoded gRPC request payloads on the new opt-in `grpc_request` tracing target: set `RUST_LOG="info,grpc_request=trace"`, optionally with `RUST_LOG_TAILS="grpc_request=/path/file.jsonl"`, to log each request's method and canonical-JSON payload. Unset by default, so log output is unchanged, and no action is required. ## gRPC https://github.com/MystenLabs/sui/pull/27197: Adding filtered subscription APIs for checkpoints, transactions, and events https://github.com/MystenLabs/sui/pull/27257: Stabilizes the filtered List* APIs as well as filter subscription APIs ## CLI https://github.com/MystenLabs/sui/pull/27183: `sui client chain-identifier` now displays both Base58 and Hex format for the chain digest. The Move package system now accepts both formats interchangeably: chain IDs in `Move.toml` `[environments]` section. ## Indexing Framework https://github.com/MystenLabs/sui/pull/27129: Pipelines are now grouped into cohorts by distance from the tip, each with its own ingestion service, so a lagging pipeline no longer throttles caught-up ones. New optional `IngestionConfig.min_cohort_boundary` (default 25,000 checkpoints) tunes the grouping; no action required. https://github.com/MystenLabs/sui/pull/27238: The consistent store's gRPC service supports the same opt-in `grpc_request` capture target. --- #### Full Log: https://github.com/MystenLabs/sui/commits/testnet-v1.76.0