Skip to content

Commit

Permalink
chore: expand getVersion natspec
Browse files Browse the repository at this point in the history
  • Loading branch information
DhairyaSethi committed Oct 17, 2023
1 parent 3ee4da9 commit 190f5de
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,8 @@ function inflatedSupplyAfter(uint256 timeElapsed) public pure returns (uint256 s

### getVersion

returns the version of the contract


```solidity
function getVersion() external pure returns (string memory);
Expand All @@ -138,6 +140,6 @@ function getVersion() external pure returns (string memory);

|Name|Type|Description|
|----|----|-----------|
|`<none>`|`string`|version the implementation version|
|`<none>`|`string`|version version string|


Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,8 @@ function updateUnmigrationLock(bool unmigrationLocked_) external onlyOwner;

### getVersion

returns the version of the contract


```solidity
function getVersion() external pure returns (string memory);
Expand All @@ -180,7 +182,7 @@ function getVersion() external pure returns (string memory);

|Name|Type|Description|
|----|----|-----------|
|`<none>`|`string`|version the implementation version|
|`<none>`|`string`|version version string|


### burn
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ function inflatedSupplyAfter(uint256 timeElapsedInSeconds) external pure returns

### getVersion

returns the version of the contract


```solidity
function getVersion() external pure returns (string memory version);
Expand All @@ -109,7 +111,7 @@ function getVersion() external pure returns (string memory version);

|Name|Type|Description|
|----|----|-----------|
|`version`|`string`|the implementation version|
|`version`|`string`|version string|


## Events
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,8 @@ function unmigrationLocked() external view returns (bool isUnmigrationLocked);

### getVersion

returns the version of the contract


```solidity
function getVersion() external pure returns (string memory version);
Expand All @@ -174,7 +176,7 @@ function getVersion() external pure returns (string memory version);

|Name|Type|Description|
|----|----|-----------|
|`version`|`string`|the implementation version|
|`version`|`string`|version string|


## Events
Expand Down

0 comments on commit 190f5de

Please sign in to comment.