@dashevo/dapi-grpc 2.0.0-rc.12 → 2.0.0-rc.13

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 = "2.0.0-rc.12"
4
+ version = "2.0.0-rc.13"
5
5
  authors = [
6
6
  "Samuel Westrich <sam@dash.org>",
7
7
  "Igor Markin <igor.markin@dash.org>",
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; 42] = [
76
+ const VERSIONED_REQUESTS: [&str; 43] = [
77
77
  "GetDataContractHistoryRequest",
78
78
  "GetDataContractRequest",
79
79
  "GetDataContractsRequest",
@@ -110,6 +110,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
110
110
  "GetIdentityTokenInfosRequest",
111
111
  "GetIdentitiesTokenInfosRequest",
112
112
  "GetTokenDirectPurchasePricesRequest",
113
+ "GetTokenContractInfoRequest",
113
114
  "GetTokenStatusesRequest",
114
115
  "GetTokenTotalSupplyRequest",
115
116
  "GetGroupInfoRequest",
@@ -126,7 +127,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
126
127
  // - "GetIdentityByNonUniquePublicKeyHashResponse"
127
128
  //
128
129
  // "GetEvonodesProposedEpochBlocksResponse" is used for 2 Requests
129
- const VERSIONED_RESPONSES: [&str; 40] = [
130
+ const VERSIONED_RESPONSES: [&str; 41] = [
130
131
  "GetDataContractHistoryResponse",
131
132
  "GetDataContractResponse",
132
133
  "GetDataContractsResponse",
@@ -161,6 +162,7 @@ fn configure_platform(mut platform: MappingConfig) -> MappingConfig {
161
162
  "GetIdentityTokenInfosResponse",
162
163
  "GetIdentitiesTokenInfosResponse",
163
164
  "GetTokenDirectPurchasePricesResponse",
165
+ "GetTokenContractInfoResponse",
164
166
  "GetTokenStatusesResponse",
165
167
  "GetTokenTotalSupplyResponse",
166
168
  "GetGroupInfoResponse",