-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Brought in the new proto jar, which replaces the in-service proto building * Dependency cleanup * Added attributes, UUID to NFT API * Fully supporting msg based fee breakdown * Updated Params API to include MsgFee params * Updates to event scraping, tied to increased Smart Contract usage * Added Msg-Based Fee API * Added procedure to update tx fees from a specific height closes: #299
- Loading branch information
Carolyn Russell
committed
Mar 2, 2022
1 parent
aa5751d
commit 2617103
Showing
184 changed files
with
1,022 additions
and
15,814 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
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,15 @@ | ||
object Platform { | ||
object OS { | ||
val name: String | ||
get() = System.getProperty("os.name") | ||
val arch: String | ||
get() = System.getProperty("os.arch") | ||
val isAppleSilicon: Boolean | ||
get() = name == "Mac OS X" && arch == "aarch64" | ||
} | ||
|
||
val availableProcessors: Int | ||
get() = Runtime().availableProcessors() | ||
} | ||
|
||
fun Runtime(): Runtime = Runtime.getRuntime() |
28 changes: 0 additions & 28 deletions
28
buildSrc/src/main/kotlin/io/provenance/DownloadProtosPlugin.kt
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.