Skip to main content

Payment Submission

Payment submission is the process by which a Client Wallet constructs a signed payload and delivers it to the Payment Processor API, which validates it and broadcasts the corresponding transaction on-chain.

No native gas token is required from the payer. The Relayer holds a funded account and covers all gas costs. The payer's only actions are two off-chain signatures and one HTTPS request.


Who It Involves

ParticipantRole
PayerHolds the stablecoin. Signs two off-chain authorisations and submits the payload.
Payment ProcessorReceives the payload over HTTPS, validates all fields and signatures, forwards the transaction to the Relayer.
RelayerBroadcasts the on-chain transaction and pays the gas fee. Operated by the Payment Processor.
Settlement ContractVerifies the signatures, executes the token transfer, and distributes fees atomically.
AcquirerA registered participant entitled to a share of the processing fee on payments they referred.

Two Submission Flows

Payment Transfer

A payer sends a stablecoin amount to a merchant beneficiary. The payload type is TransferRequest. The Settlement Contract transfers the principal to the merchant after deducting fees.

Acquirer Registration

A participant pays a one-time fee to become a registered Acquirer. The payload type is BuyAcquiringPackRequest. Upon settlement, the participant's wallet is registered on-chain with a unique Acquirer ID.


Where It Fits in the Stack

Client Wallet

│ two EIP-712 signatures + HTTPS POST

wallet-gateway ──► broadcast-service ──► broadcast-submitter (Relayer)

│ on-chain transaction

Settlement Contract