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

format function tokenType to solidity #55

Merged
merged 2 commits into from
Sep 23, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ function feeTo() external view returns (address);

Returns the token `Type` enum for a given `tokenId`.

```function tokenType(uint256 tokenId) external view returns (Type);```
```solidity
function tokenType(uint256 tokenId) external view returns (Type);
```


##### option
Expand Down Expand Up @@ -251,7 +253,9 @@ function exercise(uint256 optionId, uint112 amount) external;
Redeems `claimId` for the underlying asset(s) if `msg.sender` is the caller and
the options chain for the claim has reached expiry. Burns the claim NFT on success.

```function redeem(uint256 claimId) external;```
```solidity
function redeem(uint256 claimId) external;
```

##### underlying

Expand Down