{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solana-payments",
    "name": "Solana Payments",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/xeroc/solana-payments",
    "canonicalUrl": "https://clawhub.ai/xeroc/solana-payments",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/solana-payments",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-payments",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "skill.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/solana-payments"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/solana-payments",
    "agentPageUrl": "https://openagent3.xyz/skills/solana-payments/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-payments/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-payments/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Lando Payments Url Creation",
        "body": "Guide agents through creating Land checkout URLs using the Payments SDK. Covers session creation, URL encoding, tributary configuration, and error handling.\nPowered by Tributary!"
      },
      {
        "title": "When to Use",
        "body": "Use when you need to:\n\nCreate checkout URLs for USDC subscription payments on Solana\nIntegrate Lando's hosted checkout flow in a web application\nGenerate shareable URLs that encode subscription parameters\nHandle Stripe-compatible checkout session creation"
      },
      {
        "title": "Core Concept",
        "body": "The Payments SDK provides a PaymentsClient that creates checkout sessions with encoded URLs. These URLs contain all subscription parameters in a Base64URL-encoded format, allowing users to complete payments through Lando's hosted checkout."
      },
      {
        "title": "Quick Start",
        "body": "npm install @tributary-so/sdk\n\nimport { CheckoutSessionManager } from \"@tributary-so/payments\";\n\nconst manager = new CheckoutSessionManager();\n\n// Create checkout session\nmanager.setBaseUrl(\"https://lando.tributary.so/#\"); // hash-based routing\nconst session = await manager.create({\n  line_items: [\n    {\n      description: \"Monthly premium access to all features\",\n      unitPrice: 20.0, // $20.00\n      quantity: 1,\n    },\n  ],\n  paymentFrequency: \"monthly\",\n  mode: \"subscription\",\n  success_url: \"https://yourapp.com/success?session_id={CHECKOUT_SESSION_ID}\",\n  cancel_url: \"https://yourapp.com/cancel\",\n  tributaryConfig: {\n    tokenMint: \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\", // USDC on mainnet\n    gateway: \"CwNybLVQ3sVmcZ3Q1veS6x99gUZcAF2duNDe3qbcEMGr\", // fixed, do not change\n    recipient: \"RECIPIENT_PUBLIC_KEY_HERE\",\n    trackingId: \"user_123_monthly_premium\",\n    autoRenew: true,\n    memo: \"Monthly premium subscription payment\",\n  },\n});\n\n// Final URL\nconsole.log(session.url);"
      },
      {
        "title": "1. Checkout Session Creation",
        "body": "Use manager.create() to generate a checkout session with an encoded URL.\n\nRequired Parameters:\n\n{\n  payment_method_types: [\"tributary\"], // Only \"tributary\" supported\n  line_items: [{\n    description: string,\n    unitPrice: number, // Amount in dollars\n    quantity: number,\n  }],\n  paymentFrequency: \"daily\" | \"weekly\" | \"monthly\" | \"annually\",\n  mode: \"subscription\", // Only \"subscription\" mode supported\n  success_url: string, // Redirect after successful payment\n  cancel_url: string, // Redirect if user cancels\n  tributaryConfig: {\n    tokenMint: string, // token mint addess (base58)\n    gateway: string, // Gateway public key (base58)\n    recipient: string, // Recipient public key (base58)\n    trackingId: string, // Your unique identifier\n    autoRenew?: boolean, // Default: false\n    memo?: string, // Optional memo for transactions\n  },\n}\n\nOptional Parameters:\n\n{\n  metadata?: Record<string, string>, // Additional metadata\n  customer?: string, // Customer ID (optional, not used in current implementation)\n}"
      },
      {
        "title": "2. Response Structure",
        "body": "The response includes a Stripe-compatible session object with the encoded checkout URL:\n\n{\n  id: string, // Session ID (format: cs_timestamp_random)\n  object: \"checkout.session\",\n  url: string, // Encoded checkout URL\n  payment_status: \"unpaid\",\n  status: \"open\",\n  amount_total: number, // Total amount in dollars\n  currency: \"usd\",\n  payment_method_types: [\"tributary\"],\n  line_items: LineItem[],\n  mode: \"subscription\",\n  success_url?: string,\n  cancel_url?: string,\n  tributaryConfig?: LandoConfig,\n  metadata?: Record<string, string>,\n}"
      },
      {
        "title": "3. URL Format",
        "body": "The checkout URL contains Base64URL-encoded subscription parameters:\n\nhttps://checkout.tributary.so/subscribe/{encoded_data}\n\nEncoded data includes:\n\ntm: Token mint (defaults to USDC: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v)\nr: Recipient public key (base58)\ng: Gateway public key (base58)\na: Total amount (calculated from line items)\nar: Auto-renew flag\nmr: Maximum renewals (default: \"null\" = unlimited)\npf: Payment frequency\nst: Start time (default: \"null\" = immediate)\ntid: Tracking ID\nli: Line items (JSON array)"
      },
      {
        "title": "Multiple Line Items",
        "body": "const session = await manager.create({\n  payment_method_types: [\"tributary\"],\n  line_items: [\n    {\n      description: \"Basic plan\",\n      unitPrice: 10.0,\n      quantity: 1,\n    },\n    {\n      description: \"Add-on features\",\n      unitPrice: 5.0,\n      quantity: 2,\n    },\n  ],\n  paymentFrequency: \"monthly\",\n  mode: \"subscription\",\n  // ... rest of config\n});\n\n// amount_total = 10.0 * 1 + 5.0 * 2 = $20.00"
      },
      {
        "title": "Different Payment Frequencies",
        "body": "// Daily payments\nawait manager.create({\n  paymentFrequency: \"daily\",\n  // ... rest of config\n});\n\n// Weekly payments\nawait manager.create({\n  paymentFrequency: \"weekly\",\n  // ... rest of config\n});\n\n// Annual payments\nawait manager.create({\n  paymentFrequency: \"annually\",\n  // ... rest of config\n});"
      },
      {
        "title": "Custom Tracking IDs",
        "body": "Tracking IDs should be unique per user/subscription combination:\n\n// Pattern: {user_id}_{plan_name}_{billing_cycle}\nconst trackingId = `user_123_premium_monthly`;\n\nawait manager.create({\n  tributaryConfig: {\n    // ... other config\n    trackingId,\n  },\n  // ... rest of config\n});"
      },
      {
        "title": "Memo for Transaction History",
        "body": "await manager.create({\n  tributaryConfig: {\n    // ... other config\n    memo: \"Monthly premium subscription - user_123\",\n  },\n  // ... rest of config\n});\n\nThis memo is stored in the transaction MEMO field on-chain:\n\ntributary:payment:{trackingId}"
      },
      {
        "title": "Error Handling",
        "body": "Always wrap session creation in try-catch:\n\ntry {\n  const session = await manager.create(params);\n  console.log(\"Checkout URL:\", session.url);\n  window.location.href = session.url;\n} catch (error) {\n  if (error.message.includes(\"Invalid gateway public key\")) {\n    console.error(\"Gateway public key is invalid\");\n  } else if (error.message.includes(\"Invalid trackingId format\")) {\n    console.error(\"Tracking ID is invalid\");\n  } else if (error.message.includes(\"Missing required fields\")) {\n    console.error(\"Missing required parameters\");\n  } else {\n    console.error(\"Failed to create checkout session:\", error.message);\n  }\n}\n\nCommon validation errors:\n\nInvalid tokenMint/gateway/recipient public keys (not valid base58)\nInvalid tracking ID format\nMissing required fields in tributaryConfig\nInvalid payment frequency\nInvalid line items (negative prices, zero quantity)"
      },
      {
        "title": "Include Session ID in Success URL",
        "body": "success_url: `https://yourapp.com/success?session_id={CHECKOUT_SESSION_ID}`;\n\nThe {CHECKOUT_SESSION_ID} placeholder is automatically replaced with the session ID."
      },
      {
        "title": "Unique Tracking IDs",
        "body": "Always use unique tracking IDs to prevent payment conflicts:\n\nfunction generateTrackingId(userId: string, planId: string): string {\n  return `${userId}_${planId}_${Date.now()}`;\n}"
      },
      {
        "title": "Validate Input Before Calling SDK",
        "body": "function validateCheckoutParams(params: any): boolean {\n  if (!params.line_items?.length) return false;\n  if (!params.tributaryConfig?.tokenMint) return false;\n  if (!params.tributaryConfig?.gateway) return false;\n  if (!params.tributaryConfig?.recipient) return false;\n  if (!params.tributaryConfig?.trackingId) return false;\n  return true;\n}\n\nif (!validateCheckoutParams(params)) {\n  throw new Error(\"Invalid checkout parameters\");\n}"
      },
      {
        "title": "Handle Auto-Renew Appropriately",
        "body": "const autoRenew = planType === \"recurring\"; // Only enable for recurring plans\n\nawait manager.create({\n  tributaryConfig: {\n    // ... other config\n    autoRenew,\n  },\n  // ... rest of config\n});"
      },
      {
        "title": "Testing",
        "body": "You can test checkout session creation without executing payments:\n\n// Create session to get URL\nconst session = await manager.create(params);\n\n// Log URL for manual testing\nconsole.log(\"Test checkout URL:\", session.url);\n\n// Verify session structure\nassert.strictEqual(session.status, \"open\");\nassert.strictEqual(session.payment_status, \"unpaid\");\nassert.ok(session.url.startsWith(\"https://checkout.tributary.so/subscribe/\"));"
      },
      {
        "title": "URL Not Redirecting",
        "body": "Verify the success_url and cancel_url are valid HTTPS URLs:\n\n// Bad\nsuccess_url: \"yourapp.com/success\";\n\n// Good\nsuccess_url: \"https://yourapp.com/success\";"
      },
      {
        "title": "Tracking ID Conflicts",
        "body": "If you get payment conflicts, ensure tracking IDs are unique:\n\n// Bad: Static tracking ID\ntrackingId: \"user_subscription\";\n\n// Good: Unique per user/plan\ntrackingId: `user_${userId}_${planId}_${timestamp}`;"
      },
      {
        "title": "Invalid Public Keys",
        "body": "Ensure recipient keys is valid base58-encoded Solana public keys:\n\n// Bad: Invalid base58\nrecipient: \"invalid-key-here\";\n\n// Good: Valid base58\nrecipient: \"9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM\";\n\n!IMPORTANT!\n\nFurther, the gateway pubkey must be CwNybLVQ3sVmcZ3Q1veS6x99gUZcAF2duNDe3qbcEMGr and must\nnot be changed as this enables and operator to trigger payments when they become\ndue!"
      },
      {
        "title": "Final URL",
        "body": "You will be given a final URL to lando.tributary.so that contains the encoded\nsession and will allow the customer agent to setup a subscription accordingly:\n\n// Final URL\nconsole.log(session.url);\n\nExample URL:\n\nhttps://lando.tributary.so/#/subscribe/[base64-encoded-data]"
      },
      {
        "title": "See Also",
        "body": "Tributary SDK: @tributary-so/sdk for on-chain operations\nPayments SDK: @tributary-so/payments for checkout functionality\nSubscription tracking: client.subscriptions.checkStatus() for real-time status checking"
      }
    ],
    "body": "Lando Payments Url Creation\n\nGuide agents through creating Land checkout URLs using the Payments SDK. Covers session creation, URL encoding, tributary configuration, and error handling. Powered by Tributary!\n\nWhen to Use\n\nUse when you need to:\n\nCreate checkout URLs for USDC subscription payments on Solana\nIntegrate Lando's hosted checkout flow in a web application\nGenerate shareable URLs that encode subscription parameters\nHandle Stripe-compatible checkout session creation\nCore Concept\n\nThe Payments SDK provides a PaymentsClient that creates checkout sessions with encoded URLs. These URLs contain all subscription parameters in a Base64URL-encoded format, allowing users to complete payments through Lando's hosted checkout.\n\nQuick Start\nnpm install @tributary-so/sdk\n\nimport { CheckoutSessionManager } from \"@tributary-so/payments\";\n\nconst manager = new CheckoutSessionManager();\n\n// Create checkout session\nmanager.setBaseUrl(\"https://lando.tributary.so/#\"); // hash-based routing\nconst session = await manager.create({\n  line_items: [\n    {\n      description: \"Monthly premium access to all features\",\n      unitPrice: 20.0, // $20.00\n      quantity: 1,\n    },\n  ],\n  paymentFrequency: \"monthly\",\n  mode: \"subscription\",\n  success_url: \"https://yourapp.com/success?session_id={CHECKOUT_SESSION_ID}\",\n  cancel_url: \"https://yourapp.com/cancel\",\n  tributaryConfig: {\n    tokenMint: \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\", // USDC on mainnet\n    gateway: \"CwNybLVQ3sVmcZ3Q1veS6x99gUZcAF2duNDe3qbcEMGr\", // fixed, do not change\n    recipient: \"RECIPIENT_PUBLIC_KEY_HERE\",\n    trackingId: \"user_123_monthly_premium\",\n    autoRenew: true,\n    memo: \"Monthly premium subscription payment\",\n  },\n});\n\n// Final URL\nconsole.log(session.url);\n\nCore Components\n1. Checkout Session Creation\n\nUse manager.create() to generate a checkout session with an encoded URL.\n\nRequired Parameters:\n\n{\n  payment_method_types: [\"tributary\"], // Only \"tributary\" supported\n  line_items: [{\n    description: string,\n    unitPrice: number, // Amount in dollars\n    quantity: number,\n  }],\n  paymentFrequency: \"daily\" | \"weekly\" | \"monthly\" | \"annually\",\n  mode: \"subscription\", // Only \"subscription\" mode supported\n  success_url: string, // Redirect after successful payment\n  cancel_url: string, // Redirect if user cancels\n  tributaryConfig: {\n    tokenMint: string, // token mint addess (base58)\n    gateway: string, // Gateway public key (base58)\n    recipient: string, // Recipient public key (base58)\n    trackingId: string, // Your unique identifier\n    autoRenew?: boolean, // Default: false\n    memo?: string, // Optional memo for transactions\n  },\n}\n\n\nOptional Parameters:\n\n{\n  metadata?: Record<string, string>, // Additional metadata\n  customer?: string, // Customer ID (optional, not used in current implementation)\n}\n\n2. Response Structure\n\nThe response includes a Stripe-compatible session object with the encoded checkout URL:\n\n{\n  id: string, // Session ID (format: cs_timestamp_random)\n  object: \"checkout.session\",\n  url: string, // Encoded checkout URL\n  payment_status: \"unpaid\",\n  status: \"open\",\n  amount_total: number, // Total amount in dollars\n  currency: \"usd\",\n  payment_method_types: [\"tributary\"],\n  line_items: LineItem[],\n  mode: \"subscription\",\n  success_url?: string,\n  cancel_url?: string,\n  tributaryConfig?: LandoConfig,\n  metadata?: Record<string, string>,\n}\n\n3. URL Format\n\nThe checkout URL contains Base64URL-encoded subscription parameters:\n\nhttps://checkout.tributary.so/subscribe/{encoded_data}\n\n\nEncoded data includes:\n\ntm: Token mint (defaults to USDC: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v)\nr: Recipient public key (base58)\ng: Gateway public key (base58)\na: Total amount (calculated from line items)\nar: Auto-renew flag\nmr: Maximum renewals (default: \"null\" = unlimited)\npf: Payment frequency\nst: Start time (default: \"null\" = immediate)\ntid: Tracking ID\nli: Line items (JSON array)\nCommon Patterns\nMultiple Line Items\nconst session = await manager.create({\n  payment_method_types: [\"tributary\"],\n  line_items: [\n    {\n      description: \"Basic plan\",\n      unitPrice: 10.0,\n      quantity: 1,\n    },\n    {\n      description: \"Add-on features\",\n      unitPrice: 5.0,\n      quantity: 2,\n    },\n  ],\n  paymentFrequency: \"monthly\",\n  mode: \"subscription\",\n  // ... rest of config\n});\n\n// amount_total = 10.0 * 1 + 5.0 * 2 = $20.00\n\nDifferent Payment Frequencies\n// Daily payments\nawait manager.create({\n  paymentFrequency: \"daily\",\n  // ... rest of config\n});\n\n// Weekly payments\nawait manager.create({\n  paymentFrequency: \"weekly\",\n  // ... rest of config\n});\n\n// Annual payments\nawait manager.create({\n  paymentFrequency: \"annually\",\n  // ... rest of config\n});\n\nCustom Tracking IDs\n\nTracking IDs should be unique per user/subscription combination:\n\n// Pattern: {user_id}_{plan_name}_{billing_cycle}\nconst trackingId = `user_123_premium_monthly`;\n\nawait manager.create({\n  tributaryConfig: {\n    // ... other config\n    trackingId,\n  },\n  // ... rest of config\n});\n\nMemo for Transaction History\nawait manager.create({\n  tributaryConfig: {\n    // ... other config\n    memo: \"Monthly premium subscription - user_123\",\n  },\n  // ... rest of config\n});\n\n\nThis memo is stored in the transaction MEMO field on-chain:\n\ntributary:payment:{trackingId}\n\nError Handling\n\nAlways wrap session creation in try-catch:\n\ntry {\n  const session = await manager.create(params);\n  console.log(\"Checkout URL:\", session.url);\n  window.location.href = session.url;\n} catch (error) {\n  if (error.message.includes(\"Invalid gateway public key\")) {\n    console.error(\"Gateway public key is invalid\");\n  } else if (error.message.includes(\"Invalid trackingId format\")) {\n    console.error(\"Tracking ID is invalid\");\n  } else if (error.message.includes(\"Missing required fields\")) {\n    console.error(\"Missing required parameters\");\n  } else {\n    console.error(\"Failed to create checkout session:\", error.message);\n  }\n}\n\n\nCommon validation errors:\n\nInvalid tokenMint/gateway/recipient public keys (not valid base58)\nInvalid tracking ID format\nMissing required fields in tributaryConfig\nInvalid payment frequency\nInvalid line items (negative prices, zero quantity)\nBest Practices\nInclude Session ID in Success URL\nsuccess_url: `https://yourapp.com/success?session_id={CHECKOUT_SESSION_ID}`;\n\n\nThe {CHECKOUT_SESSION_ID} placeholder is automatically replaced with the session ID.\n\nUnique Tracking IDs\n\nAlways use unique tracking IDs to prevent payment conflicts:\n\nfunction generateTrackingId(userId: string, planId: string): string {\n  return `${userId}_${planId}_${Date.now()}`;\n}\n\nValidate Input Before Calling SDK\nfunction validateCheckoutParams(params: any): boolean {\n  if (!params.line_items?.length) return false;\n  if (!params.tributaryConfig?.tokenMint) return false;\n  if (!params.tributaryConfig?.gateway) return false;\n  if (!params.tributaryConfig?.recipient) return false;\n  if (!params.tributaryConfig?.trackingId) return false;\n  return true;\n}\n\nif (!validateCheckoutParams(params)) {\n  throw new Error(\"Invalid checkout parameters\");\n}\n\nHandle Auto-Renew Appropriately\nconst autoRenew = planType === \"recurring\"; // Only enable for recurring plans\n\nawait manager.create({\n  tributaryConfig: {\n    // ... other config\n    autoRenew,\n  },\n  // ... rest of config\n});\n\nTesting\n\nYou can test checkout session creation without executing payments:\n\n// Create session to get URL\nconst session = await manager.create(params);\n\n// Log URL for manual testing\nconsole.log(\"Test checkout URL:\", session.url);\n\n// Verify session structure\nassert.strictEqual(session.status, \"open\");\nassert.strictEqual(session.payment_status, \"unpaid\");\nassert.ok(session.url.startsWith(\"https://checkout.tributary.so/subscribe/\"));\n\nTroubleshooting\nURL Not Redirecting\n\nVerify the success_url and cancel_url are valid HTTPS URLs:\n\n// Bad\nsuccess_url: \"yourapp.com/success\";\n\n// Good\nsuccess_url: \"https://yourapp.com/success\";\n\nTracking ID Conflicts\n\nIf you get payment conflicts, ensure tracking IDs are unique:\n\n// Bad: Static tracking ID\ntrackingId: \"user_subscription\";\n\n// Good: Unique per user/plan\ntrackingId: `user_${userId}_${planId}_${timestamp}`;\n\nInvalid Public Keys\n\nEnsure recipient keys is valid base58-encoded Solana public keys:\n\n// Bad: Invalid base58\nrecipient: \"invalid-key-here\";\n\n// Good: Valid base58\nrecipient: \"9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM\";\n\n\n!IMPORTANT!\n\nFurther, the gateway pubkey must be CwNybLVQ3sVmcZ3Q1veS6x99gUZcAF2duNDe3qbcEMGr and must not be changed as this enables and operator to trigger payments when they become due!\n\nFinal URL\n\nYou will be given a final URL to lando.tributary.so that contains the encoded session and will allow the customer agent to setup a subscription accordingly:\n\n// Final URL\nconsole.log(session.url);\n\n\nExample URL:\n\nhttps://lando.tributary.so/#/subscribe/[base64-encoded-data]\n\nSee Also\nTributary SDK: @tributary-so/sdk for on-chain operations\nPayments SDK: @tributary-so/payments for checkout functionality\nSubscription tracking: client.subscriptions.checkStatus() for real-time status checking"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/xeroc/solana-payments",
    "publisherUrl": "https://clawhub.ai/xeroc/solana-payments",
    "owner": "xeroc",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/solana-payments",
    "downloadUrl": "https://openagent3.xyz/downloads/solana-payments",
    "agentUrl": "https://openagent3.xyz/skills/solana-payments/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-payments/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-payments/agent.md"
  }
}