Stellar Plus
  • Welcome
  • Quick Start
  • Welcome
  • Quick Start
  • 🎓Tutorials
    • Issuing your first asset
    • Bulk Payments
    • E2E Certificate of Deposit demo
    • Creating a new contract client
  • 📄Reference
    • Account
      • Base
      • Default Account Handler
      • Freighter Account Handler
    • Asset
      • Classic Asset Handler
      • Stellar Asset Contract Handler
      • Soroban Token Handler
    • Network
    • Contract Clients
      • Certificate of Deposit Client
    • Core
      • Contract Engine
      • Pipelines
        • Build Transaction
        • Classic Signing Requirements
        • Fee Bump
        • Sign Transaction
        • Soroban Auth
        • Simulate Transaction
        • Soroban Get Transaction
        • Submit Transaction
        • Soroban Transaction
        • Classic Transaction
    • Utils
      • Plugins
        • Fee Bump Plugin
        • Channel Accounts Plugin
        • Auto Restore Plugin
        • Profiler Plugin
      • Pipeline
        • Conveyor Belt
        • Multi-belt Pipeline
    • RPC
      • Default RPC Handler
      • Validation Cloud RPC Handler
    • Horizon Handler
Powered by GitBook
On this page
  • Input
  • Output

Was this helpful?

Edit on GitHub
  1. Reference
  2. Core
  3. Pipelines

Submit Transaction

PreviousSoroban Get TransactionNextSoroban Transaction

Last updated 1 year ago

Was this helpful?

Input

 type SubmitTransactionPipelineInput = {
  transaction: Transaction | FeeBumpTransaction
  networkHandler: RpcHandler | HorizonHandler
}
  • transaction: A transaction of fee bump transaction ready to be submitted for processing.

Output

type SubmitTransactionPipelineOutput = {
  response: HorizonApi.SubmitTransactionResponse | SorobanRpc.Api.SendTransactionResponse
}

networkHandler: A handler to communicate with the Stellar network. Can be an for Soroban transactions or preferably afor Stellar Classic transactions.

response: A response object for a successful transaction. Can be of type HorizonApi.SubmitTransactionResponse for Classic transactions or SorobanRpc.Api.SendTransactionResponse for Soroban transactions. These types are sourced from.

📄
RPC handler
HorizonHandler
js-stellar-sdk