@dashevo/dapi-grpc 1.2.0-rc.1 → 1.3.0-dev.1

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/Cargo.toml CHANGED
@@ -1,7 +1,7 @@
1
1
  [package]
2
2
  name = "dapi-grpc"
3
3
  description = "GRPC client for Dash Platform"
4
- version = "1.2.0-rc.1"
4
+ version = "1.3.0-dev.1"
5
5
  authors = [
6
6
  "Samuel Westrich <sam@dash.org>",
7
7
  "Igor Markin <igor.markin@dash.org>",
package/build.rs CHANGED
@@ -47,13 +47,14 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
47
47
  // Derive features for versioned messages
48
48
  //
49
49
  // "GetConsensusParamsRequest" is excluded as this message does not support proofs
50
- const VERSIONED_REQUESTS: [&str; 26] = [
50
+ const VERSIONED_REQUESTS: [&str; 29] = [
51
51
  "GetDataContractHistoryRequest",
52
52
  "GetDataContractRequest",
53
53
  "GetDataContractsRequest",
54
54
  "GetDocumentsRequest",
55
55
  "GetIdentitiesByPublicKeyHashesRequest",
56
56
  "GetIdentitiesRequest",
57
+ "GetIdentitiesBalancesRequest",
57
58
  "GetIdentityNonceRequest",
58
59
  "GetIdentityContractNonceRequest",
59
60
  "GetIdentityBalanceAndRevisionRequest",
@@ -74,16 +75,20 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
74
75
  "GetContestedResourceIdentityVotesRequest",
75
76
  "GetVotePollsByEndDateRequest",
76
77
  "GetTotalCreditsInPlatformRequest",
78
+ "GetEvonodesProposedEpochBlocksByIdsRequest",
79
+ "GetEvonodesProposedEpochBlocksByRangeRequest",
77
80
  ];
78
81
 
79
82
  // "GetConsensusParamsResponse" is excluded as this message does not support proofs
80
- const VERSIONED_RESPONSES: [&str; 27] = [
83
+ // "GetEvonodesProposedEpochBlocksResponse" is used for 2 Requests
84
+ const VERSIONED_RESPONSES: [&str; 29] = [
81
85
  "GetDataContractHistoryResponse",
82
86
  "GetDataContractResponse",
83
87
  "GetDataContractsResponse",
84
88
  "GetDocumentsResponse",
85
89
  "GetIdentitiesByPublicKeyHashesResponse",
86
90
  "GetIdentitiesResponse",
91
+ "GetIdentitiesBalancesResponse",
87
92
  "GetIdentityBalanceAndRevisionResponse",
88
93
  "GetIdentityBalanceResponse",
89
94
  "GetIdentityNonceResponse",
@@ -105,6 +110,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
105
110
  "GetContestedResourceIdentityVotesResponse",
106
111
  "GetVotePollsByEndDateResponse",
107
112
  "GetTotalCreditsInPlatformResponse",
113
+ "GetEvonodesProposedEpochBlocksResponse",
108
114
  ];
109
115
 
110
116
  check_unique(&VERSIONED_REQUESTS).expect("VERSIONED_REQUESTS");