Conversation
Co-authored-by: Derek Cofausper <256792747+decofe@users.noreply.github.com>
This was referenced Sep 8, 2026
pull Bot
pushed a commit
to Dustin4444/tempo
that referenced
this pull request
Sep 8, 2026
Adds `public-mix.yml` with plain TIP-20 transfers, memo transfers, mints, and native MPP opens in relative submitted-transaction shares of 25:40:1:15. Renames the shared ABI to `tip20.abi.json`, adds `transferWithMemo`, and updates its preset references. MPP uses an ordinary single-step open sequence supported by txgen main. A TODO links [txgen tempoxyz#200](tempoxyz/txgen#200) for adding signed settlement later. The multi-region runner separately needs `public-mix` added to its preset allowlist. Validation: checked the open-only sequence against txgen main's sequence schema, removal of settlement/save fields, preserved transaction shares, ABI arguments, references, and the linked TODO. Nushell resolution for both presets and `git diff --check` passed. The [earlier 60-second benchmark](https://github.com/tempoxyz/tempo/actions/runs/34240689460) passed with settlement enabled; this open-only revision has not been benchmarked again. Prompted by: @shekhirin --------- Co-authored-by: Alexey Shekhirin <5773434+shekhirin@users.noreply.github.com>
decofe
added a commit
to tempoxyz/tempo
that referenced
this pull request
Sep 9, 2026
Adds `public-mix.yml` with plain TIP-20 transfers, memo transfers, mints, and native MPP opens in relative submitted-transaction shares of 25:40:1:15. Renames the shared ABI to `tip20.abi.json`, adds `transferWithMemo`, and updates its preset references. MPP uses an ordinary single-step open sequence supported by txgen main. A TODO links [txgen #200](tempoxyz/txgen#200) for adding signed settlement later. The multi-region runner separately needs `public-mix` added to its preset allowlist. Validation: checked the open-only sequence against txgen main's sequence schema, removal of settlement/save fields, preserved transaction shares, ABI arguments, references, and the linked TODO. Nushell resolution for both presets and `git diff --check` passed. The [earlier 60-second benchmark](https://github.com/tempoxyz/tempo/actions/runs/34240689460) passed with settlement enabled; this open-only revision has not been benchmarked again. Prompted by: @shekhirin --------- Co-authored-by: Alexey Shekhirin <5773434+shekhirin@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Support native TIP-20 Channel Reserve
open -> settleworkloads for Tempo's MPP benchmark preset.saveoutputs (raw,tx_hash, andsender) derived from the signed transaction. Saved steps are signed synchronously while preserving bounded, ordered output and existing inclusion dependencies.mpp_settletemplate that decodes the saved open, recovers its payer, derives the channel descriptor and transaction context, and signs the EIP-712 settlement voucher.Validation
txgen-core,txgen-cli, andtxgen-tempopassed, excluding the two existing 1,000/10,000-account auth-map generation tests (unrelated, expensive debug-build tests).mpp.ymlagainst a fresh local Tempo v1.14.0 dev node: 50 opens and 50 settlements across three accounts, all 100 receipts successful. Every open was included before its settlement, all channels ended withsettled = deposit = 1, every payee received its deposit, allowances stayed zero, and the reserve token balance returned to zero.The local run verifies correctness, not throughput. Settlement leaves the channel state present; it is not a close operation.
Prompted by: @shekhirin