Skip to content
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

fix(sdk)!: bigint for uint64 values #2443

Merged
merged 42 commits into from
Feb 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
289404e
fix(dapi-grpc): change identityNonce to bigint
pshenmic Jan 17, 2025
fd1ad6f
feat(js-sdk): bump ts target js version
pshenmic Jan 20, 2025
9071ec5
feat(js-sdk): fix test
pshenmic Jan 20, 2025
5337fb9
feat(wasm-dpp): parse u64 from string
pshenmic Jan 20, 2025
7d0a6b1
chore(js-sdk): add toString()
pshenmic Jan 20, 2025
8903929
chore(js-dapi-client): patch readUint64() to readUint64String()
pshenmic Jan 22, 2025
9432343
feat(dapi-grpc): add encode as string for all uint64 values
pshenmic Jan 30, 2025
0be475e
feat(dapi-grpc): remove patch
pshenmic Jan 30, 2025
05ee96c
fix(dapi-grpc): cast identity nonce to bigint
pshenmic Jan 30, 2025
ca82201
feat(js-dapi-client): add getStatus typed response class
pshenmic Jan 31, 2025
2e2f182
test(js-dapi-client): add unit tests for GetStatus query
pshenmic Jan 31, 2025
319c775
feat(js-dapi-client): implement bigint for uint64 types in grpc schema
pshenmic Feb 1, 2025
90b7f49
feat(wasm-dpp): use u64 (bigint) when possible
pshenmic Feb 1, 2025
faee85a
feat(sdk): fix metadata bigint parsing
pshenmic Feb 1, 2025
005c7ab
chore(js-dash-sdk): cleanup
pshenmic Feb 4, 2025
8f6c686
feat(js-dash-sdk): wrap getTotalCredits to bigint
pshenmic Feb 4, 2025
64bdaf7
fix(wasm-dpp): lint fix
pshenmic Feb 4, 2025
3e27a84
fix(wasm-dpp): fix unit tests
pshenmic Feb 4, 2025
864e782
fix(wasm-dpp): lint
pshenmic Feb 4, 2025
f6e02db
fix(wasm-dpp): js lint
pshenmic Feb 4, 2025
0d78164
fix(sdk): update eslint rule for bigints
pshenmic Feb 4, 2025
183a2fb
fix(js-dapi-client): fix unit tests
pshenmic Feb 4, 2025
61bacb8
fix(js-dapi-client): fix lint
pshenmic Feb 4, 2025
775378a
fix(test-suite): fix get status test expects
pshenmic Feb 4, 2025
ce71cfd
fix(js-dash-sdk): fix lost bumpIdentityNonce increment
pshenmic Feb 5, 2025
685c6c0
fix(platform-test-suite): fix expect to match bigint
pshenmic Feb 5, 2025
b585c25
fix(js-dash-sdk): fix tests
pshenmic Feb 5, 2025
a0e680a
fix(js-dash-sdk): fix unit tests
pshenmic Feb 5, 2025
8e29636
fix(platform-test-suite): another expect bigint
pshenmic Feb 5, 2025
70639fd
fix(platform-test-suite): another expects
pshenmic Feb 5, 2025
9fdcd4c
fix(sdk): remove debug console.log
pshenmic Feb 5, 2025
6c40f64
fix(platform-test-suite): big int credits fix
pshenmic Feb 5, 2025
96ca759
fix(platform-test-suite): big int credits fix
pshenmic Feb 5, 2025
c603885
fix(platform-test-suite): big int credits fix
pshenmic Feb 5, 2025
b48b7b8
fix(platform-test-suite): big int please
pshenmic Feb 5, 2025
2493262
fix(wasm-dpp): remove redundant
pshenmic Feb 5, 2025
4e644dd
fix(platform-test-suite): fix epoch bigint
pshenmic Feb 5, 2025
ac2dadb
fix(platform-test-suite): data contract history and withdrawal test fix
pshenmic Feb 5, 2025
a3e78b2
fix(js-dapi-client): fix data contract history unit tests
pshenmic Feb 5, 2025
90917c5
fix(js-dash-sdk): fix history spec ts
pshenmic Feb 5, 2025
6e35dad
fix(sdk): fix clippy warnings
pshenmic Feb 7, 2025
b7bda4a
fix(wasm-dpp): fix test
pshenmic Feb 7, 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
3 changes: 3 additions & 0 deletions packages/dapi-grpc/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"extends": "airbnb-base",
"env": {
"es2020": true
},
"rules": {
"import/no-extraneous-dependencies": ["error", { "packageDir": "." }],
"no-plusplus": 0,
Expand Down
512 changes: 256 additions & 256 deletions packages/dapi-grpc/clients/platform/v0/nodejs/platform_protoc.js

Large diffs are not rendered by default.

887 changes: 460 additions & 427 deletions packages/dapi-grpc/clients/platform/v0/python/platform_pb2.py

Large diffs are not rendered by default.

Loading
Loading