@dashevo/dapi-grpc 3.0.0-dev.7 → 3.0.0-dev.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build.rs CHANGED
@@ -73,7 +73,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
73
73
  // Derive features for versioned messages
74
74
  //
75
75
  // "GetConsensusParamsRequest" is excluded as this message does not support proofs
76
- const VERSIONED_REQUESTS: [&str; 46] = [
76
+ const VERSIONED_REQUESTS: [&str; 48] = [
77
77
  "GetDataContractHistoryRequest",
78
78
  "GetDataContractRequest",
79
79
  "GetDataContractsRequest",
@@ -120,6 +120,8 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
120
120
  "GetFinalizedEpochInfosRequest",
121
121
  "GetAddressInfoRequest",
122
122
  "GetAddressesInfosRequest",
123
+ "GetRecentAddressBalanceChangesRequest",
124
+ "GetRecentCompactedAddressBalanceChangesRequest",
123
125
  ];
124
126
 
125
127
  const PROOF_ONLY_VERSIONED_REQUESTS: [&str; 1] = ["GetAddressesTrunkStateRequest"];
@@ -134,7 +136,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
134
136
  // - "GetIdentityByNonUniquePublicKeyHashResponse"
135
137
  //
136
138
  // "GetEvonodesProposedEpochBlocksResponse" is used for 2 Requests
137
- const VERSIONED_RESPONSES: [&str; 44] = [
139
+ const VERSIONED_RESPONSES: [&str; 46] = [
138
140
  "GetDataContractHistoryResponse",
139
141
  "GetDataContractResponse",
140
142
  "GetDataContractsResponse",
@@ -179,6 +181,8 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
179
181
  "GetFinalizedEpochInfosResponse",
180
182
  "GetAddressInfoResponse",
181
183
  "GetAddressesInfosResponse",
184
+ "GetRecentAddressBalanceChangesResponse",
185
+ "GetRecentCompactedAddressBalanceChangesResponse",
182
186
  ];
183
187
 
184
188
  const PROOF_ONLY_VERSIONED_RESPONSES: [&str; 1] = ["GetAddressesTrunkStateResponse"];