Submit Transaction
How to submit signed transactions to the Wayup Marketplace
Introduction
Requirements
API Request Structure
Configuration
// API endpoint for Wayup Marketplace
const BASE_URL = "https://prod.api.ada-anvil.app/marketplace/api";
// Replace these with your actual signature and transaction hex
// The signature comes from your wallet after signing the transaction hex
// The transaction is the hex output from a previous build-tx call
const SIGNATURE = "SIGNATURE";
const TRANSACTION = "TRANSACTION";Type Definitions
Implementation
Step 1: Prepare the Submission Payload
Step 2: Submit the Transaction
Step 3: Process the Response
Running the Example
Example Output
The Complete File
Best Practices
End-to-End Flow
Last updated
Was this helpful?

