スマートコントラクトとは正確には何ですか?
1 回答
- 投票
-
- 2019-02-02
スマートコントラクトは、Tezosのパン屋(およびPOW設定の鉱夫)によってブロックチェーンに直接保存および実行される小さなスクリプトです.
スマートコントラクトを使用すると、ユーザーはトークン、派生トークン(ERC20コントラクトの場合と同様)、条件、イベントなどを明示的かつ自動的に処理できます.
「ダム」契約は、自動実行なしで紙に書かれた通常の契約です. また、スマートコントラクトは完全に明示的である必要がありますが、通常のコントラクトは解釈に多くを任せます.
米国の規制当局であるCFTCによる優れた入門書: https://www.cftc.gov/sites/default/files/2018-11/LabCFTC_PrimerSmartContracts112718.pdf
A smart contract is a small script that is directly stored and executed on the blockchain by bakers for Tezos (and miners in a POW setting).
Smart contracts enable users to handle tokens, derivative tokens (as in ERC20 contracts), conditions, events, etc., in an explicit and automatic way.
A 'dumb' contract is a regular contract written on a piece of paper without the automatic execution. Also smart contracts need to be fully explicit whereas regular contracts leave a lot to interpretation.
A nice primer by the CFTC, a US regulator: https://www.cftc.gov/sites/default/files/2018-11/LabCFTC_PrimerSmartContracts112718.pdf
-
スマートコントラクトの「明示的な」性質についてもう少し詳しく説明していただけますか?Can you please elaborate on the 'explicit' nature of smart contracts a bit more?
- 0
- 2019-02-02
- DPF
-
明示的とは、スマートコントラクトのコードが公開され、チェーンに保存されることを意味します.これには、2つの結果があります.つまり、誰でも読み取り可能であり、パン屋が決定論的な方法で直接フォローします.Explicit means that the code of a smart contract is public and stored on the chain which has two consequences: it is readable by everyone and it is directly followed in a deterministic way by bakers.
- 2
- 2019-02-02
- FFF
私はテゾス、そして実際にはビットコイン全般に不慣れです.しかし、私はそれをかなり読んでいて、記事暗号ブリーフィングについて、イーサリアムのようにテゾスはスマートコントラクトを使用していると述べています.
スマートコントラクトとは正確には何ですか?「ダム」コントラクトとどのように比較されますか?