スマートコントラクトは、SmartPyを使用して別のスマートコントラクトのメソッドを呼び出します
1 回答
- 投票
ここにサンプルテンプレートがあります: https://smartpy.io/dev/index.html?template=collatz.py .
ドキュメントは次のとおりです: http://smartpy.io/dev/reference.html#_contract_and_address .
基本的に:
ターゲット契約を定義する
c = sp.contract(sp.TInt, address_of_the_target_contract, entry_point = "foo").open_some()
sp.transfer(-42, sp.mutez(0), c)
There is an example template here: https://smartpy.io/dev/index.html?template=collatz.py.
The documentation is here: http://smartpy.io/dev/reference.html#_contract_and_address.
Basically:
define your target contract
c = sp.contract(sp.TInt, address_of_the_target_contract, entry_point = "foo").open_some()
use sp.transfer(-42, sp.mutez(0), c)
smartPyを使用した別のスマートコントラクトからスマートコントラクトメソッドを呼び出すにはどうすればよいですか?
ユースケース:
私たちが持っていると想像してみてください:
ありがとうございます.