@xelis/sdk 0.11.10 → 0.11.11
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/dist/types/daemon/types.d.ts +15 -1
- package/package.json +1 -1
|
@@ -253,10 +253,16 @@ export interface GetAccountHistoryParams {
|
|
|
253
253
|
asset?: string;
|
|
254
254
|
minimum_topoheight?: number;
|
|
255
255
|
maximum_topoheight?: number;
|
|
256
|
+
incoming_flow?: boolean;
|
|
257
|
+
outgoing_flow?: boolean;
|
|
256
258
|
}
|
|
257
259
|
export interface AccountHistory {
|
|
258
260
|
topoheight: number;
|
|
259
261
|
hash: string;
|
|
262
|
+
block_timestamp: number;
|
|
263
|
+
dev_fee?: {
|
|
264
|
+
reward: number;
|
|
265
|
+
};
|
|
260
266
|
mining?: {
|
|
261
267
|
reward: number;
|
|
262
268
|
};
|
|
@@ -269,7 +275,15 @@ export interface AccountHistory {
|
|
|
269
275
|
incoming?: {
|
|
270
276
|
from: string;
|
|
271
277
|
};
|
|
272
|
-
|
|
278
|
+
multi_sig?: {
|
|
279
|
+
participants: string[];
|
|
280
|
+
threshold: number;
|
|
281
|
+
};
|
|
282
|
+
invoke_contract?: {
|
|
283
|
+
contract: string;
|
|
284
|
+
chunk_id: number;
|
|
285
|
+
};
|
|
286
|
+
deploy_contract?: {};
|
|
273
287
|
}
|
|
274
288
|
export interface PeerPeerListUpdated {
|
|
275
289
|
peer_id: string;
|
package/package.json
CHANGED