How transactions are initiated and authorized depends on the wallet type you choose. The wallet type determines who controls signing (your backend or your users) and where keys live.Documentation Index
Fetch the complete documentation index at: https://developers.circle.com/llms.txt
Use this file to discover all available pages before exploring further.
Who initiates and who approves transactions
Every onchain transaction must be initiated and authorized before it is broadcast. Initiating means requesting the transaction. Authorizing means approving the signing. The following table shows who handles each and where keys are held for each wallet type.| Wallet type | Who initiates | Who authorizes | Keys |
|---|---|---|---|
| Developer-controlled | Your backend (API/SDK). Your users can also initiate a request from your app after you authenticate them and assign a wallet. | Your backend, using the entity secret. | MPC. You hold the entity secret. Circle hosts MPC nodes, or you host them (for example, on-premises). |
| User-controlled | Your app calls user APIs or SDKs (client or server) for the signed-in end user. | Your user, by authenticating in your app. Circle cannot sign without your user’s approval. | MPC. Only your user can complete signing. |
| Modular | Your app (SDK), on behalf of your user. | Your user (passkey). Circle cannot sign without your user’s approval. The passkey never leaves your user’s device. | Passkey on your user’s device (or cloud backup). |
Transaction signing lifecycle
- Initiate: A client (your backend or your app) calls Circle APIs to create a transaction signing request (for example, transfer, contract call).
- Authorize: The party that controls the key approves the signing. In developer-controlled wallets, your backend approves using the entity secret. In user-controlled and modular wallets, your user authenticates using a confirmation UI, PIN, or biometrics, and approves in your app.
- Sign: Circle (with MPC or passkey participation) produces the signature.
- Broadcast: The signed transaction is sent to the blockchain. For supported blockchains, Circle can handle broadcasting, or you can choose to use the signing APIs with your own node.
Submitted vs finalizedSending a transaction to the blockchain (submitted) and the blockchain
processing it to finality (complete) are two separate events. Circle’s API
response does not indicate finality. State changes (for example, sent,
confirmed, failed) are delivered asynchronously. Set up
Webhook notifications to receive
them.