@dashevo/dapi-grpc 3.0.0-dev.7 → 3.0.0-dev.8
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 +6 -2
- package/clients/drive/v0/nodejs/drive_pbjs.js +3132 -0
- package/clients/platform/v0/nodejs/platform_pbjs.js +3132 -0
- package/clients/platform/v0/nodejs/platform_protoc.js +3025 -144
- package/clients/platform/v0/web/platform_pb.d.ts +383 -0
- package/clients/platform/v0/web/platform_pb.js +3025 -144
- package/clients/platform/v0/web/platform_pb_service.d.ts +38 -0
- package/clients/platform/v0/web/platform_pb_service.js +80 -0
- package/package.json +2 -2
- package/protos/platform/v0/platform.proto +67 -0
- package/src/drive/client/org.dash.platform.dapi.v0.rs +286 -0
- package/src/drive/wasm/org.dash.platform.dapi.v0.rs +286 -0
- package/src/platform/client/org.dash.platform.dapi.v0.rs +300 -0
- package/src/platform/wasm/org.dash.platform.dapi.v0.rs +300 -0
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;
|
|
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;
|
|
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"];
|