transfer

tarafından convex-dev

CVM coinlerini veya değiştirilebilir tokenları Convex hesapları arasında transfer edin. Kullanıcı başka bir hesaba coin veya token göndermek istediğinde kullanın.

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

Transfer Coins or Tokens

A transfer is a transaction, so it needs a key the user has supplied — see the transact skill for the authorisation model and the CLI form. Without a key you can prepare the transfer but not execute it.

CVM Coin Transfer

Source: (transfer #42 1000000000) — sends 1 CVM.

With a Convex MCP server configured, its transfer tool takes to (destination address) and amount (in copper).

Fungible Token Transfer

Source: (@convex.fungible/transfer #TOKEN #DEST AMOUNT)

With the MCP transfer tool, set the token parameter to the token actor address.

Before Executing

  • Confirm destination and amount with the user. Restate both in CVM units — "send 2.5 CVM to #42" — and get agreement before signing. A transfer is irreversible.
  • Convert to copper: multiply CVM by 1,000,000,000. Getting this wrong by a factor of 10^9 is the easiest and most expensive mistake here.
  • Check the sender's balance first with a query, so a :FUNDS failure is caught before signing rather than after.
  • For tokens, check the token balance, not the coin balance — they are unrelated.

Report the result in CVM units (e.g. "Sent 2.5 CVM to #42").

convex-dev tarafından daha fazla skill

account
convex-dev
Convex hesapları oluşturun veya inceleyin. Kullanıcı yeni bir account kurmak, account ayrıntılarını kontrol etmek veya anahtarları yönetmek istediğinde kullanın.
account
convex-dev
Convex hesapları oluşturun veya inceleyin. Kullanıcı yeni bir hesap kurmak, hesap detaylarını kontrol etmek veya anahtarları yönetmek istediğinde kullanın.
token
convex-dev
Convex üzerinde değiştirilebilir token'lar oluşturun ve yönetin. Kullanıcı yeni bir token oluşturmak, token bakiyelerini kontrol etmek veya token arzını yönetmek istediğinde kullanın.
build-convex
convex-dev
Convex projesini kaynak koddan derleyin. Bir katılımcının Convex'i derlemek, test etmek veya paketlemek istediğinde kullanın.
convex-db
convex-dev
Convex DB — kafes destekli bir SQL veritabanını kullanın. Kullanıcıların sorgu yazmasına, JDBC veya PostgreSQL istemcileriyle bağlanmasına, tablo oluşturmasına, veri eklemesine/sorgulamasına yardımcı olurken kullanın,…
convex-lisp
convex-dev
Convex Lisp dil referansı — CVM kuralları, kütüphane kodu çağırma, aktör tanımları, juice ve hata kodları. CVM kaynağı yazarken veya hata ayıklarken kullanın…
deploy
convex-dev
Bir aktörü (akıllı sözleşme) Convex ağına dağıtın. Kullanıcı, dışa aktarılmış işlevlere sahip yeni bir zincir üstü aktör oluşturmak istediğinde kullanın.
ecosystem
convex-dev
Convex ekosisteminde yön bulma — hangi depoda ne var, spec'ler ve dokümanlar nerede ve hangi istemci kütüphaneleri mevcut. Bağlam gerektiğinde kullan…