0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Solidityで面白いと思った点列挙

Last updated at Posted at 2022-07-30

CryptoZombiesでSolidityチュートリアルやる中で、面白いと思った点をメモ。(適宜追記)

・一度デプロイしたコントラクトは、チェーン上に乗ってしまうと変更・削除できなくなってしまう(だから、セキュリティには細心の注意が必要)
改ざんできないということであり、それこそがブロックチェーンアプリの堅牢性を象徴する性質とも言える。
⇒後で変更しなければいけないような値は、set()関数で設定するようにしておく

・プログラム実行条件として、require()句を設定できる。条件を満たさないと、処理を中断できる。(レベル制限などの実装用)

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?