SmartPyのAPIドキュメントはどこにありますか?
2 回答
- 投票
-
- 2019-09-29
あなたが探しているのはこれだと思います:sp.send(sp.address( "tz1")、sp.tez(420))
sp.sendのドキュメントはあまり見つかりませんが、sp.sendとsp.amountを使用したSmartPyの例をたくさん見てきました
I believe what you are looking for is this: sp.send(sp.address("tz1"), sp.tez(420))
I can't find much documentation for sp.send but I have seen many SmartPy examples with sp.send and sp.amount
-
完璧です.ありがとう!perfect. thanks!
- 1
- 2019-09-30
- lostdorje
-
- 2019-09-29
SmartPyはまだ初期段階であり、開発中であり、新しい機能が定期的に追加されています.ドキュメントへの主なリンクは、彼らのWebサイト https://smartpy.io/にあります.これらはすべてほとんどがポイントです.SmartPy言語とツールを構成するコンポーネントを説明するさまざまな中規模の記事を参照してください.SmartPyを使用して契約を作成する方法に関する最良のリソースは、中程度の記事にある例です.
さらに、オンラインエディターには、 https://smartpy.io/demoに記載されている基本事項がいくつかあります./smartpy_help.html
SmartPy is still early stage and under development with new features being added regularly. The main links to documentation can be found on their website https://smartpy.io/ -- these all mostly point to the various medium articles that describe the components that make up the SmartPy language and tools. The best resources for how to use SmartPy to develop contracts are the examples found in the medium articles.
Additionally, the online editor has some of the basics documented at https://smartpy.io/demo/smartpy_help.html
-
ありがとう、理解しました.具体的には `transfer()`に関しては存在しますか?それはどこにある?smartpyモジュールを掘り下げて、.smartimportSMARTから `のみを見つけました から.objfunctionsをインポートします from .versionimport__version__`.私はそれらをさらに掘り下げて、この方法を見つけることができません. ありがとう!Thank you and understood. Regarding `transfer()` specifically, does it exist? Where is it? I dig into the smartpy module and find only `from .smart import SMART from . import objfunctions from .version import __version__`. I dig further into those and can't find this method. Thanks!
- 0
- 2019-09-29
- lostdorje
-
それは別の質問のように聞こえます.Stackexchangeは、非常に具体的な質問をできるだけ詳細に行う場合に最適に機能します.smartpyを使用して、達成しようとしていることのすべての詳細を使用して転送する方法を尋ねることをお勧めします.そうすれば、smartpyのその領域に精通している人が、あなたの質問を簡単に見つけて答えることができます.質問は特にドキュメントの入手先に関するものでした.新しい質問を追加してください.That sounds like a different question. Stackexchange works best when you ask a very specific question with as much detail as possible I suggest you ask how to transfer using smartpy with all the details of exactly what it is you are trying to accomplish. That way it is easy for someone very familiar with that area of smartpy to find and answer your question. The question was specifically about where to get the docs, please add a new question.
- 0
- 2019-09-29
- cousinit
-
ポインタをありがとう.私もそれらを見たことがありますが、送金の例は見ていません.Thanks for the pointers. I've seen them as well, yet hadn't seen an example transferring money.
- 0
- 2019-09-30
- lostdorje
-
私の最初の文は私の実際の質問でした.やりたいことのサンプルコード呼び出しを提供しました.ドキュメントに関する2番目の質問は、最初の質問に対する答えを探していたからです.My first sentence was my actual question. I provided a sample code call of what I wanted to do. The second question about docs was only because I was looking for an answer to my first question.
- 0
- 2019-09-30
- lostdorje
現在契約に取り組んでおり、具体的には
sp.transfer(address, amount)
のようなSmartPyAPIを呼び出したいですか?このような機能はありますか?SmartPyのAPIドキュメントが見つからず、SmartPyモジュールを掘り下げてもそれほど遠くはありませんでした.
詳細情報はどこで探す必要がありますか?