-
Notifications
You must be signed in to change notification settings - Fork 20
fix: find 034 #1066
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
Open
AlbertoMolinaIoBuilders
wants to merge
5
commits into
development
Choose a base branch
from
auditIssue/BBND-1502-FIND-034
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
fix: find 034 #1066
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
8571324
fix: find 034
AlbertoMolinaIoBuilders 6309191
docs: documentation updated
AlbertoMolinaIoBuilders f3656fb
Merge remote-tracking branch 'origin/development' into auditIssue/BBNβ¦
AlbertoMolinaIoBuilders cdcc5a1
fix: nominalvalue snapshots added
AlbertoMolinaIoBuilders ab0c920
Merge remote-tracking branch 'origin/development' into auditIssue/BBNβ¦
AlbertoMolinaIoBuilders File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@hashgraph/asset-tokenization-contracts": minor | ||
| --- | ||
|
|
||
| couponFor token balance bug fixed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
packages/ats/contracts/contracts/facets/nominalValueAtSnapshot/INominalValueAtSnapshot.sol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| pragma solidity >=0.8.0 <0.9.0; | ||
|
|
||
| /** | ||
| * @title INominalValueAtSnapshot | ||
| */ | ||
| interface INominalValueAtSnapshot { | ||
| function nominalValueAtSnapshot(uint256 _snapshotID) external view returns (uint256 nominalValue_); | ||
|
|
||
| function nominalValueDecimalsAtSnapshot(uint256 _snapshotID) external view returns (uint8 nominalValueDecimals_); | ||
| } | ||
21 changes: 21 additions & 0 deletions
21
packages/ats/contracts/contracts/facets/nominalValueAtSnapshot/NominalValueAtSnapshot.sol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| pragma solidity >=0.8.0 <0.9.0; | ||
|
|
||
| import { INominalValueAtSnapshot } from "./INominalValueAtSnapshot.sol"; | ||
| import { SnapshotsStorageWrapper } from "../../domain/asset/SnapshotsStorageWrapper.sol"; | ||
|
|
||
| /** | ||
| * @title NominalValueAtSnapshot | ||
| */ | ||
| abstract contract NominalValueAtSnapshot is INominalValueAtSnapshot { | ||
| /// @inheritdoc INominalValueAtSnapshot | ||
| function nominalValueAtSnapshot(uint256 _snapshotID) external view override returns (uint256 nominalValue_) { | ||
| nominalValue_ = SnapshotsStorageWrapper.nominalValueAtSnapshot(_snapshotID); | ||
| } | ||
|
|
||
| function nominalValueDecimalsAtSnapshot( | ||
| uint256 _snapshotID | ||
| ) external view override returns (uint8 nominalValueDecimals_) { | ||
| nominalValueDecimals_ = SnapshotsStorageWrapper.nominalValueDecimalsAtSnapshot(_snapshotID); | ||
| } | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. natspec please |
||
36 changes: 36 additions & 0 deletions
36
...ges/ats/contracts/contracts/facets/nominalValueAtSnapshot/NominalValueAtSnapshotFacet.sol
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| // SPDX-License-Identifier: Apache-2.0 | ||
| pragma solidity >=0.8.0 <0.9.0; | ||
|
|
||
| import { INominalValueAtSnapshot } from "./INominalValueAtSnapshot.sol"; | ||
| import { NominalValueAtSnapshot } from "./NominalValueAtSnapshot.sol"; | ||
| import { IStaticFunctionSelectors } from "../../infrastructure/proxy/IStaticFunctionSelectors.sol"; | ||
| import { _NOMINAL_VALUE_AT_SNAPSHOT_RESOLVER_KEY } from "../../constants/resolverKeys.sol"; | ||
|
|
||
| /** | ||
| * @title NominalValueAtSnapshotFacet | ||
| */ | ||
| contract NominalValueAtSnapshotFacet is NominalValueAtSnapshot, IStaticFunctionSelectors { | ||
| /// @inheritdoc IStaticFunctionSelectors | ||
| function getStaticResolverKey() external pure override returns (bytes32 staticResolverKey_) { | ||
| staticResolverKey_ = _NOMINAL_VALUE_AT_SNAPSHOT_RESOLVER_KEY; | ||
| } | ||
|
|
||
| /// @inheritdoc IStaticFunctionSelectors | ||
| function getStaticFunctionSelectors() external pure override returns (bytes4[] memory staticFunctionSelectors_) { | ||
| uint256 selectorIndex = 2; | ||
| staticFunctionSelectors_ = new bytes4[](selectorIndex); | ||
| unchecked { | ||
| staticFunctionSelectors_[--selectorIndex] = this.nominalValueAtSnapshot.selector; | ||
| staticFunctionSelectors_[--selectorIndex] = this.nominalValueDecimalsAtSnapshot.selector; | ||
| } | ||
| } | ||
|
|
||
| /// @inheritdoc IStaticFunctionSelectors | ||
| function getStaticInterfaceIds() external pure override returns (bytes4[] memory staticInterfaceIds_) { | ||
| uint256 selectorIndex = 1; | ||
| staticInterfaceIds_ = new bytes4[](selectorIndex); | ||
| unchecked { | ||
| staticInterfaceIds_[--selectorIndex] = type(INominalValueAtSnapshot).interfaceId; | ||
| } | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just build the two arrays as normal, without index. |
||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
NatSpec, please