エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
How can we retrieve the evolution of the state of an smart contract variable?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
How can we retrieve the evolution of the state of an smart contract variable?
I have a simple smart contract with a variable color which stores a string. If I unterstand corre... I have a simple smart contract with a variable color which stores a string. If I unterstand correctly, each transaction can change the state of this variable and is stored permanently into the blockchain. Let's say tx#1 changes it to red, tx#1 changes it to blue, and tx#2 to red, tx#3 to green. I want to have red, blue and green, and not just the last state of this variable color. How can I achiev