transfer

โดย convex-dev

Transfer CVM coins or fungible tokens between Convex accounts. Use when the user wants to send coins or tokens to another account.

npx skills add https://github.com/convex-dev/convex --skill transfer

Transfer Coins or Tokens

CVM Coin Transfer

Transfer native CVM coins using mcp__convex-testnet__transfer:

  • to: destination address (e.g. #42)
  • amount: in copper (1 CVM = 1,000,000,000 copper)

Or via transaction: (transfer #42 1000000000) — sends 1 CVM.

Fungible Token Transfer

For non-native tokens, include the token actor address:

  • Via transfer tool: set token parameter to the token actor address
  • Via transaction: (@convex.fungible/transfer #TOKEN #DEST AMOUNT)

Important

  • Always confirm the destination address and amount with the user before executing
  • Convert user-friendly amounts to copper: multiply by 1,000,000,000
  • Check the sender has sufficient balance first with a query
  • Display amounts in CVM units in responses (e.g. "Sent 2.5 CVM to #42")

Skills เพิ่มเติมจาก convex-dev

account
convex-dev
Create or inspect Convex accounts. Use when the user wants to set up a new account, check account details, or manage keys.
official
build-convex
convex-dev
Build the Convex project from source. Use when a contributor wants to compile, test, or package Convex.
official
cns
convex-dev
Resolve or register Convex Name System (CNS) names. Use when the user wants to look up a CNS name, register a new name, or update a name's target.
official
convex-db
convex-dev
Use Convex DB — a lattice-backed SQL database. Use when helping users write queries, connect via JDBC or PostgreSQL clients, create tables, insert/query data,…
official
deploy
convex-dev
Deploy an actor (smart contract) to the Convex network. Use when the user wants to create a new on-chain actor with exported functions.
official
query
convex-dev
Execute a read-only CVM query on the Convex network. Use when reading on-chain state, checking balances, looking up accounts, or evaluating Convex Lisp…
official
token
convex-dev
สร้างและจัดการโทเค็นที่สามารถใช้แทนกันได้บน Convex ใช้เมื่อผู้ใช้ต้องการสร้างโทเค็นใหม่ ตรวจสอบยอดคงเหลือของโทเค็น หรือจัดการอุปทานของโทเค็น
official
transact
convex-dev
Execute a CVM transaction on the Convex network. Use when the user wants to modify on-chain state, call actor functions, or define values.
official