Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions src/pages/guide/payments/sponsor-user-fees.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ Enable gasless transactions by sponsoring transaction fees for your users. Tempo

### Set up the fee payer service

For production use, applications run their own fee payer service. You can stand up a minimal one using the [`Handler.relay`](/accounts/server/handler.relay) handler provided by the [Tempo Accounts SDK](/accounts). To sponsor transactions, you need a funded account that will act as the fee payer.

:::tip
Tempo provides a public testnet fee payer service at `https://sponsor.moderato.tempo.xyz` that you can use for development and testing. If you want to run your own, follow the instructions below.
For development and testing, Tempo provides a public testnet fee payer service at `https://sponsor.moderato.tempo.xyz`.
:::

You can stand up a minimal fee payer service using the [`Handler.relay`](/accounts/server/handler.relay) handler provided by the [Tempo Accounts SDK](/accounts). To sponsor transactions, you need a funded account that will act as the fee payer.

```ts twoslash [server.ts]
// @noErrors
// [!include ~/snippets/unformatted/withFeePayer.ts:server]
Expand Down
2 changes: 1 addition & 1 deletion src/snippets/public-testnet-sponsor-tip.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:::tip
Tempo provides a public testnet fee payer service at `https://sponsor.moderato.tempo.xyz` that you can use for development and testing. If you want to run your own, follow the instructions below.
For development and testing, Tempo provides a public testnet fee payer service at `https://sponsor.moderato.tempo.xyz`. For production, run your own fee payer service.
:::
Loading