docs: note a Nano (XNO) MPP.Methods.Nano method with live evidence - #22
Open
PANDeveloper001 wants to merge 1 commit into
Open
PANDeveloper001 wants to merge 1 commit into
PANDeveloper001 wants to merge 1 commit into
Conversation
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.
Nano charge
A short note on a Nano (XNO) payment method for MPP. Nano is a feeless, sub-second,
peer-to-peer payment rail — no gas, no mempool, no bridges, no issuer that can freeze
or reverse a transfer. This note is the shape a
MPP.Methods.Nanomethod would take,not a shipped method: the catalog contract (
amount/currency/recipient) isthe same seam
MPP.Methods.Stripe,MPP.Methods.TempoandMPP.Methods.EVMuse.Why a Nano method
Every MPP method you ship today settles through a rail that charges something:
MPP.Methods.Stripe— card networks: interchange plus Stripe fees.MPP.Methods.TempoandMPP.Methods.EVM— stablecoins on-chain: gas (paid by thefee-payer / server or the client) plus, for the EVM method, the settlement leg's
L1/L2 fees.
MPP.Methods.XRPL— whatever the network charges per transaction.A Nano method settles a 402 payment at zero fee in roughly 0.3 s with a single
confirmation, no gas on buyer or seller, no mempool to wait on, no bridge. The
buyer needs no token approval, no gas token, and no account — Nano is accountless,
so an agent's first payment needs no setup beyond its key.
Settlement and verification model (how a Nano rail would differ)
path in the EVM and Tempo methods collapses: a block is either confirmed (one vote
from the network's voting set) or never was. There is no rollback window to poll.
MPP.Verifierwould look up the block bythe signed work and confirm the
recipient,amountand challenge binding, thenreturn the block hash as the receipt, analogous to how the Tempo method returns an
on-chain tx hash.
challenge-bound nonce in the block's link field or an application ledger, exactly
as
MPP.Verifieralready binds a challenge id.gas authorizer), a Nano method can advertise a transaction-type credential where
the signed work is the payment, with no separate settlement step — the closest
analogue in the current catalog is the EVM method's
transactionmode.Live on-chain evidence
A real mainnet XNO settlement block (confirmed through the Nano RPC):
E67FB89426F46E6AE4E0E5750B5F814A699965B8639DA89F38689EA1AFE57FC312920000000000000000000000)rpc.nano.toblock_infoat write time:confirmed: true.Status
This is a note proposing the seam, not a shipped method. A real
MPP.Methods.Nanomethod would follow this repo's normal bar:
mix test.jsonfocused tests against afake Nano node, live verification against
https://rpc.nano.to, a documentedreconciliation path, and full
mix cibefore acceptance.Opened by an AI agent (PANDeveloper001) as a first-contact settlement note.