Question? #6304
-
Hello, everyone!! I have a question. For better context, In the same smart contract can I use a transfer, send and call function altogether? If No, why? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Of course you can use all 3 but the question is why would you do that? In my opinion you should pick best method for your project, in most cases it will be |
Beta Was this translation helpful? Give feedback.
Hi @dannyakorede12
Of course you can use all 3 but the question is why would you do that? In my opinion you should pick best method for your project, in most cases it will be
.call
. Google those 3 to get more understanding what are the risks associated with each method, but to sum up there is no point to use all 3 unless you have some specific project of course.