-
-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add UD21x18 type * feat: add SD21x18 type * test: remove compiler warnings * fix: PR problems * docs: mention new adjacent types in README --------- Co-authored-by: Paul Razvan Berg <[email protected]>
- Loading branch information
1 parent
3681681
commit ebe0395
Showing
39 changed files
with
1,403 additions
and
73 deletions.
There are no files selected for viewing
This file contains 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 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 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,25 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity >=0.8.19; | ||
|
||
/* | ||
██████╗ ██████╗ ██████╗ ███╗ ███╗ █████╗ ████████╗██╗ ██╗ | ||
██╔══██╗██╔══██╗██╔══██╗████╗ ████║██╔══██╗╚══██╔══╝██║ ██║ | ||
██████╔╝██████╔╝██████╔╝██╔████╔██║███████║ ██║ ███████║ | ||
██╔═══╝ ██╔══██╗██╔══██╗██║╚██╔╝██║██╔══██║ ██║ ██╔══██║ | ||
██║ ██║ ██║██████╔╝██║ ╚═╝ ██║██║ ██║ ██║ ██║ ██║ | ||
╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ | ||
███████╗██████╗ ██████╗ ██╗██╗ ██╗ ██╗ █████╗ | ||
██╔════╝██╔══██╗╚════██╗███║╚██╗██╔╝███║██╔══██╗ | ||
███████╗██║ ██║ █████╔╝╚██║ ╚███╔╝ ╚██║╚█████╔╝ | ||
╚════██║██║ ██║██╔═══╝ ██║ ██╔██╗ ██║██╔══██╗ | ||
███████║██████╔╝███████╗ ██║██╔╝ ██╗ ██║╚█████╔╝ | ||
╚══════╝╚═════╝ ╚══════╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚════╝ | ||
*/ | ||
|
||
import "./sd21x18/Casting.sol"; | ||
import "./sd21x18/Constants.sol"; | ||
import "./sd21x18/Errors.sol"; | ||
import "./sd21x18/ValueType.sol"; |
This file contains 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,25 @@ | ||
// SPDX-License-Identifier: MIT | ||
pragma solidity >=0.8.19; | ||
|
||
/* | ||
██████╗ ██████╗ ██████╗ ███╗ ███╗ █████╗ ████████╗██╗ ██╗ | ||
██╔══██╗██╔══██╗██╔══██╗████╗ ████║██╔══██╗╚══██╔══╝██║ ██║ | ||
██████╔╝██████╔╝██████╔╝██╔████╔██║███████║ ██║ ███████║ | ||
██╔═══╝ ██╔══██╗██╔══██╗██║╚██╔╝██║██╔══██║ ██║ ██╔══██║ | ||
██║ ██║ ██║██████╔╝██║ ╚═╝ ██║██║ ██║ ██║ ██║ ██║ | ||
╚═╝ ╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ | ||
██╗ ██╗██████╗ ██████╗ ██╗██╗ ██╗ ██╗ █████╗ | ||
██║ ██║██╔══██╗╚════██╗███║╚██╗██╔╝███║██╔══██╗ | ||
██║ ██║██║ ██║ █████╔╝╚██║ ╚███╔╝ ╚██║╚█████╔╝ | ||
██║ ██║██║ ██║██╔═══╝ ██║ ██╔██╗ ██║██╔══██╗ | ||
╚██████╔╝██████╔╝███████╗ ██║██╔╝ ██╗ ██║╚█████╔╝ | ||
╚═════╝ ╚═════╝ ╚══════╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚════╝ | ||
*/ | ||
|
||
import "./ud21x18/Casting.sol"; | ||
import "./ud21x18/Constants.sol"; | ||
import "./ud21x18/Errors.sol"; | ||
import "./ud21x18/ValueType.sol"; |
This file contains 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 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 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 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 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 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
Oops, something went wrong.