AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Kryptogo Pay Transfer

skill-paid-tw-skills-kryptogo-pay-transfer · by paid-tw

>

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-paid-tw-skills-kryptogo-pay-transfer

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-paid-tw-skills-kryptogo-pay-transfer)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Kryptogo Pay Transfer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

KryptoGO Payment 代幣轉帳/提領任務

你的任務是在用戶的專案中實作 KryptoGO Payment 穩定幣轉帳與提領功能。

串接 Checklist

  • [ ] 環境確認 - 確認 API Key 已設定
  • [ ] 轉帳模組 - 建立代幣轉帳功能
  • [ ] API 端點 - 建立提領/轉帳端點
  • [ ] 安全驗證 - 加入提領前的身份驗證
  • [ ] 測試驗證 - 驗證轉帳功能正常

Step 1: 確認環境

詢問用戶:

  1. 使用情境:需要什麼轉帳功能?
  • 用戶提領(用戶將餘額提領到自己的錢包)
  • 獎勵發放(發送代幣到用戶錢包)
  • 批次轉帳(批量發送代幣)
  1. 代幣與鏈:要轉帳什麼代幣?
  • USDT on Arbitrum
  • USDC on Arbitrum

用戶輸入: $ARGUMENTS

Step 2: 確認環境變數

Transfer API 只需要 X-STUDIO-API-KEY

  • KRYPTOGO_STUDIO_API_KEY

Step 3: 建立轉帳功能

核心功能:

  1. transferTokens(chainId, contractAddress, amount, walletAddress) - 轉帳代幣

Step 4: 建立 API 端點

建議加入提領前的驗證邏輯:

  1. 驗證用戶身份
  2. 驗證提領地址格式
  3. 確認金額合理
  4. 執行轉帳

Step 5: 測試

  1. 確認 Studio 帳戶有足夠餘額
  2. 使用小額(如 0.01)測試轉帳
  3. 確認回傳 tx_hash 可在區塊鏈上查到

API 參考

端點

| 項目 | 說明 | |------|------| | 方法 | POST | | URL | https://wallet.kryptogo.app/v1/studio/api/asset_pro/transfer |

Required Headers

| Header | 說明 | |--------|------| | X-STUDIO-API-KEY | Studio API Key | | Content-Type | application/json |

請求參數

| 參數 | 類型 | 必填 | 說明 | |------|------|:----:|------| | chainid | String | ✓ | 區塊鏈 ID(如 arb)| | contractaddress | String | ✓ | 代幣合約地址 | | amount | String | ✓ | 轉帳金額 | | wallet_address | String | ✓ | 目標錢包地址 |

Arbitrum 代幣合約地址

| 代幣 | 合約地址 | |------|---------| | USDT | 0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9 | | USDC | 0xff970a61a04b1ca14834a43f5de4533ebddb5cc8 |

成功回應

{
  "code": 0,
  "data": {
    "id": "1-1627380000-1",
    "tx_hash": "0x1234567890abcdef",
    "transfer_time": 1627380000
  }
}

錯誤回應(餘額不足)

{
  "code": 4015,
  "message": "Balance not enough",
  "data": {
    "insufficient_amount": "123.456"
  }
}

詳細參考文件

  • [程式碼範例 (Node.js/Python)](references/code-examples.md)

重要注意事項

  1. 轉帳為不可逆操作,請務必確認地址正確
  2. 目前無提領限額
  3. 確認 Studio 帳戶有足夠餘額
  4. API Key 不可暴露在前端程式碼中

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.