From 2cf5cf81e7612dc772d39abcab682efd3ae7b119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=80=9D=E5=AE=81?= Date: Wed, 10 Mar 2021 22:45:21 +0800 Subject: [PATCH] Fix transfer token command. (#620) --- docs/roles/integrator/implicit-accounts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/roles/integrator/implicit-accounts.md b/docs/roles/integrator/implicit-accounts.md index 1ae3a58586c..4c3f02cf3c9 100644 --- a/docs/roles/integrator/implicit-accounts.md +++ b/docs/roles/integrator/implicit-accounts.md @@ -115,14 +115,14 @@ near $ACCOUNT You can also replace `$ACCOUNT` with your actual account ID, e.g. ```bash -near 98793cd91a3f870fb126f66285808c7e094afcfc4eda8a970f6648cdf0dbd6de +near send 98793cd91a3f870fb126f66285808c7e094afcfc4eda8a970f6648cdf0dbd6de ``` ## Transferring to the implicit account Let's say someone gives you their account ID `0861ea8ddd696525696ccf3148dd706c4fda981c64d8a597490472594400c223`. You can just transfer to it by running: ```bash -near 0861ea8ddd696525696ccf3148dd706c4fda981c64d8a597490472594400c223 +near send 0861ea8ddd696525696ccf3148dd706c4fda981c64d8a597490472594400c223 ``` ## BONUS: Converting public key using python (for learning purposes)