-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue/138 #150
Conversation
@@ -23,6 +23,7 @@ contract BigBang is ERC2771Context { | |||
event Executed( | |||
address indexed owner, | |||
uint256 indexed topHatId, | |||
uint256 indexed hatterHatId, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hats protocol の hatId の取得が大変そうだったため、 hatterHatId
も topHatId
とともに event で emit してみましたが、大丈夫でしょうか?
address[] shareHolders, | ||
uint256[] allocations, | ||
uint256 totalAllocation |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
役割や着用時間の重み計算後の値は、後で取得したり計算するのが大変そうだったため、event に追加してみたのですが、大丈夫でしょうか?
SplitCreator の HatsTimeFrameModule 経由で mintHat して woreTime を使用するテストが、今回の変更により修正が必要になったため、この部分のテストコードを修正することで、 woreTime 込みのテスト実装のタスクを完成させました。 |
関連イシュー
タスク
event
への引数の追加