Skip to content

Issue #4: Implement Send Transaction Endpoint #4

Description

@Chinaza007

Labels: feature, backend, stellar, intermediate

Description:
Create REST API endpoint to submit transactions to Stellar network.
Acceptance Criteria:

POST /api/v1/transactions endpoint
Validates recipient address (valid Stellar public key)
Validates amount (positive, sufficient balance)
Builds and submits Stellar transaction
Stores transaction in database
Returns transaction hash and status
Handles Stellar network errors gracefully
Rate limiting (10 transactions per minute per user)

Request Body:
json{
"recipientPublicKey": "GDJK...",
"amount": "50.00",
"asset": "USDC",
"memo": "For groceries"
}
Response:
json{
"id": "uuid",
"hash": "stellar-tx-hash",
"status": "pending",
"createdAt": "2026-02-13T14:30:00Z"
}
Estimated Time: 6-8 hours

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions