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

Open
wants to merge 40 commits into
base: v2.0-dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
804c988
fix(dapi-grpc): change identityNonce to bigint
pshenmic Jan 17, 2025
cc1ed69
feat(js-sdk): bump ts target js version
pshenmic Jan 20, 2025
8975451
feat(js-sdk): fix test
pshenmic Jan 20, 2025
d9a9d2f
feat(wasm-dpp): parse u64 from string
pshenmic Jan 20, 2025
daa41ac
chore(js-sdk): add toString()
pshenmic Jan 20, 2025
52b4b7f
chore(js-dapi-client): patch readUint64() to readUint64String()
pshenmic Jan 22, 2025
5f2c0e6
feat(dapi-grpc): add encode as string for all uint64 values
pshenmic Jan 30, 2025
4d02885
feat(dapi-grpc): remove patch
pshenmic Jan 30, 2025
09c6715
fix(dapi-grpc): cast identity nonce to bigint
pshenmic Jan 30, 2025
78ac251
feat(js-dapi-client): add getStatus typed response class
pshenmic Jan 31, 2025
21726cd
test(js-dapi-client): add unit tests for GetStatus query
pshenmic Jan 31, 2025
f0984e9
feat(js-dapi-client): implement bigint for uint64 types in grpc schema
pshenmic Feb 1, 2025
f924e6f
feat(wasm-dpp): use u64 (bigint) when possible
pshenmic Feb 1, 2025
ee79545
feat(sdk): fix metadata bigint parsing
pshenmic Feb 1, 2025
78d2ac9
chore(js-dash-sdk): cleanup
pshenmic Feb 4, 2025
0e90fe7
feat(js-dash-sdk): wrap getTotalCredits to bigint
pshenmic Feb 4, 2025
947ee75
fix(wasm-dpp): lint fix
pshenmic Feb 4, 2025
7d13827
fix(wasm-dpp): fix unit tests
pshenmic Feb 4, 2025
7b96baf
fix(wasm-dpp): lint
pshenmic Feb 4, 2025
6f1bae6
fix(wasm-dpp): js lint
pshenmic Feb 4, 2025
b3c525e
fix(sdk): update eslint rule for bigints
pshenmic Feb 4, 2025
4bd4243
fix(js-dapi-client): fix unit tests
pshenmic Feb 4, 2025
bd922a9
fix(js-dapi-client): fix lint
pshenmic Feb 4, 2025
4353c6b
fix(test-suite): fix get status test expects
pshenmic Feb 4, 2025
a69bbeb
fix(js-dash-sdk): fix lost bumpIdentityNonce increment
pshenmic Feb 5, 2025
677b83b
fix(platform-test-suite): fix expect to match bigint
pshenmic Feb 5, 2025
0dd779f
fix(js-dash-sdk): fix tests
pshenmic Feb 5, 2025
e26ffff
fix(js-dash-sdk): fix unit tests
pshenmic Feb 5, 2025
f461c5c
fix(platform-test-suite): another expect bigint
pshenmic Feb 5, 2025
fe6a73a
fix(platform-test-suite): another expects
pshenmic Feb 5, 2025
de19884
fix(sdk): remove debug console.log
pshenmic Feb 5, 2025
4f4a81c
fix(platform-test-suite): big int credits fix
pshenmic Feb 5, 2025
51d7dfc
fix(platform-test-suite): big int credits fix
pshenmic Feb 5, 2025
4999e1a
fix(platform-test-suite): big int credits fix
pshenmic Feb 5, 2025
512eebf
fix(platform-test-suite): big int please
pshenmic Feb 5, 2025
b5d8a66
fix(wasm-dpp): remove redundant
pshenmic Feb 5, 2025
14ea045
fix(platform-test-suite): fix epoch bigint
pshenmic Feb 5, 2025
099bc62
fix(platform-test-suite): data contract history and withdrawal test fix
pshenmic Feb 5, 2025
89ca6e2
fix(js-dapi-client): fix data contract history unit tests
pshenmic Feb 5, 2025
50548ca
fix(js-dash-sdk): fix history spec ts
pshenmic Feb 5, 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