Skip to content

feat: improve txmetadata features #22

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
wants to merge 39 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
5d514d9
chore: set v1.7.2-SNAPSHOT
HashEngineering Jan 27, 2025
69a2bd3
feat: add TxMetadata protobuf as new data format
HashEngineering Jan 27, 2025
3c5810f
feat: add wallet-utils data contract
HashEngineering Jan 27, 2025
7362d3d
fix: improve error handling in fetch documents
HashEngineering Jan 27, 2025
b590753
feat: update TxMetadata to use protobuf storage
HashEngineering Feb 4, 2025
4176624
tests: Add and modify TxMetadata tests
HashEngineering Feb 4, 2025
b2f5a97
feat: add and update TxMetadata examples
HashEngineering Feb 4, 2025
b922d77
feat: add RegisteredNamesWithBalance example
HashEngineering Feb 4, 2025
29d7618
chore: remove commented code from result.i
HashEngineering Feb 4, 2025
c2a6020
chore: update Cargo.lock
HashEngineering Mar 19, 2025
c66b9aa
Merge branch 'main' of https://github.com/HashEngineering/kotlin-plat…
HashEngineering Mar 19, 2025
a19feeb
Merge branch 'main' of https://github.com/HashEngineering/kotlin-plat…
HashEngineering Jun 6, 2025
60df4b3
chore: start 2.0.0-SNAPSHOT
HashEngineering Jun 19, 2025
754dee2
chore: update Cargo.toml and lock files for platform 2.0
HashEngineering Jun 19, 2025
0d7dd1d
chore: use rust 1.85
HashEngineering Jun 19, 2025
df6380f
chore: use ferment v0.2.3
HashEngineering Jun 19, 2025
c518832
fix: updates for platform 2.0
HashEngineering Jun 19, 2025
a4700b6
fix: add more tests for wallet-utils
HashEngineering Jun 19, 2025
cf33156
tests: improve the getTransactionTest
HashEngineering Jun 19, 2025
365d834
feat: add DisplayIdentityKeys.kt example
HashEngineering Jun 19, 2025
527b29a
chore: update Cargo.lock files
HashEngineering Jun 19, 2025
5325fcb
fix: build.gradle swig command line fix
HashEngineering Jun 20, 2025
9f05f37
Merge branch 'platform-2' of https://github.com/HashEngineering/kotli…
HashEngineering Jun 20, 2025
93a7233
fix: remove tests module
HashEngineering Jul 3, 2025
3bcf404
fix: remove tests module
HashEngineering Jul 3, 2025
7f8db0c
fix: use v7 for mainnet, v9 for testnet
HashEngineering Jul 3, 2025
c61a8ef
tests: use latest platform version for put_tests
HashEngineering Jul 3, 2025
895f242
tests: add contract tests
HashEngineering Jul 3, 2025
2805d22
chore: update Cargo.lock
HashEngineering Jul 3, 2025
9a24687
Merge branch 'platform-2' of https://github.com/HashEngineering/kotli…
HashEngineering Jul 3, 2025
bc2010c
fix: sdk version related fixes
HashEngineering Jul 4, 2025
149c339
chore: update version to 2.0.0-TX-SNAPSHOT
HashEngineering Jul 4, 2025
b5e505e
fix: add progress tracking to publishTxMetaData
HashEngineering Jul 4, 2025
68bf870
tests: add more tests for DataContractTest
HashEngineering Jul 4, 2025
6c3d28c
chore: update clone.h and ignore.i
HashEngineering Jul 4, 2025
b35c9cd
chore: update Cargo.lock
HashEngineering Jul 4, 2025
24c4ca4
tests: remove obsolete tests
HashEngineering Jul 4, 2025
e53e4a5
tests: remove obsolete tests
HashEngineering Jul 4, 2025
9965ca9
tests: remove obsolete tests
HashEngineering Jul 4, 2025
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Build the android libraries to publish to Maven Central

### Use in other projects
```groovy
dppVersion = "1.7.5"
dppVersion = "1.7.6-SNAPSHOT"
dependencies {
implementation "org.dashj.platform:dash-sdk-java:$dppVersion"
implementation "org.dashj.platform:dash-sdk-kotlin:$dppVersion" // dpp
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext.version = '1.7.5'
ext.version = '2.0.0-TX-SNAPSHOT'
ext.kotlin_version = '1.8.22'
ext.dashj_version = '21.1.7'
ext.dashj_version = '21.1.9'
repositories {
google() // Required for Android library and application projects
mavenCentral()
Expand Down
Loading