Skip to content
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

Standardize member naming and ordering #99

Merged
merged 13 commits into from
Nov 16, 2022
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ event NewOptionType(
address indexed underlyingAsset,
uint96 exerciseAmount,
uint96 underlyingAmount,
uint40 exerciseTimestamp,
uint40 earliestExerciseTimestamp,
neodaoist marked this conversation as resolved.
Show resolved Hide resolved
uint40 expiryTimestamp
);
```
Expand Down Expand Up @@ -314,7 +314,7 @@ unique hash `keccak256(abi.encode(Option memory))` where `settlementSeed` is set
```solidity
struct Option {
address underlyingAsset;
uint40 exerciseTimestamp;
uint40 earliestExerciseTimestamp;
uint40 expiryTimestamp;
address exerciseAsset;
uint96 underlyingAmount;
Expand Down
Loading