Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 4 additions & 8 deletions .github/grpc-queries-cache.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,18 +165,14 @@
"getShieldedNullifiers": {
"status": "implemented"
},
"getNullifiersTrunkState": {
"getDocumentHistory": {
"status": "implemented"
},
"getNullifiersBranchState": {
"getTokenPreProgrammedDistributions": {
"status": "implemented"
},
"getRecentNullifierChanges": {
"status": "implemented"
},
"getRecentCompactedNullifierChanges": {
"getShieldedNotesCount": {
"status": "implemented"
}
},
"last_updated": "2026-03-10T11:25:01.317388"
}
}
28 changes: 6 additions & 22 deletions packages/dapi-grpc/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
// Derive features for versioned messages
//
// "GetConsensusParamsRequest" is excluded as this message does not support proofs
const VERSIONED_REQUESTS: [&str; 58] = [
const VERSIONED_REQUESTS: [&str; 56] = [
"GetDataContractHistoryRequest",
"GetDataContractRequest",
"GetDataContractsRequest",
Expand Down Expand Up @@ -141,19 +141,11 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
"GetShieldedPoolStateRequest",
"GetShieldedNotesCountRequest",
"GetShieldedNullifiersRequest",
"GetRecentNullifierChangesRequest",
"GetRecentCompactedNullifierChangesRequest",
];

const PROOF_ONLY_VERSIONED_REQUESTS: [&str; 2] = [
"GetAddressesTrunkStateRequest",
"GetNullifiersTrunkStateRequest",
];
const PROOF_ONLY_VERSIONED_REQUESTS: [&str; 1] = ["GetAddressesTrunkStateRequest"];

const MERK_PROOF_VERSIONED_REQUESTS: [&str; 2] = [
"GetAddressesBranchStateRequest",
"GetNullifiersBranchStateRequest",
];
const MERK_PROOF_VERSIONED_REQUESTS: [&str; 1] = ["GetAddressesBranchStateRequest"];

// The following responses are excluded as they don't support proofs:
// - "GetConsensusParamsResponse"
Expand All @@ -163,7 +155,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
// - "GetIdentityByNonUniquePublicKeyHashResponse"
//
// "GetEvonodesProposedEpochBlocksResponse" is used for 2 Requests
const VERSIONED_RESPONSES: [&str; 56] = [
const VERSIONED_RESPONSES: [&str; 54] = [
"GetDataContractHistoryResponse",
"GetDataContractResponse",
"GetDataContractsResponse",
Expand Down Expand Up @@ -218,19 +210,11 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
"GetShieldedPoolStateResponse",
"GetShieldedNotesCountResponse",
"GetShieldedNullifiersResponse",
"GetRecentNullifierChangesResponse",
"GetRecentCompactedNullifierChangesResponse",
];

const PROOF_ONLY_VERSIONED_RESPONSES: [&str; 2] = [
"GetAddressesTrunkStateResponse",
"GetNullifiersTrunkStateResponse",
];
const PROOF_ONLY_VERSIONED_RESPONSES: [&str; 1] = ["GetAddressesTrunkStateResponse"];

const MERK_PROOF_VERSIONED_RESPONSES: [&str; 2] = [
"GetAddressesBranchStateResponse",
"GetNullifiersBranchStateResponse",
];
const MERK_PROOF_VERSIONED_RESPONSES: [&str; 1] = ["GetAddressesBranchStateResponse"];

check_unique(&VERSIONED_REQUESTS).expect("VERSIONED_REQUESTS");
check_unique(&VERSIONED_RESPONSES).expect("VERSIONED_RESPONSES");
Expand Down
4,696 changes: 0 additions & 4,696 deletions packages/dapi-grpc/clients/drive/v0/nodejs/drive_pbjs.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

4,696 changes: 0 additions & 4,696 deletions packages/dapi-grpc/clients/platform/v0/nodejs/platform_pbjs.js

Large diffs are not rendered by default.

4,344 changes: 0 additions & 4,344 deletions packages/dapi-grpc/clients/platform/v0/nodejs/platform_protoc.js

Large diffs are not rendered by default.

Loading
Loading