From 3b8efdb311d1fabfd51a12fff76752a3161296c1 Mon Sep 17 00:00:00 2001 From: Vojtech Simetka Date: Tue, 9 Feb 2021 12:17:23 +0100 Subject: [PATCH] fix: updated tag reference to bee-js v0.5.0 --- docs/user-documentation/track-upload.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/docs/user-documentation/track-upload.md b/docs/user-documentation/track-upload.md index 7a82f3c9..93c966d1 100644 --- a/docs/user-documentation/track-upload.md +++ b/docs/user-documentation/track-upload.md @@ -23,15 +23,11 @@ The status of your upload can be followed by using `tags`. A `tag` is a label gi ```ts interface Tag { - total: number // total number of chunks belonging to a tag - split: number // number of chunks already processed by splitter for hashing - seen: number // number of chunks already seen - stored: number // number of chunks already stored locally - sent: number // number of chunks sent for push syncing - synced: number // number of chunks synced with proof + total: number // the total number of chunks for upload(s) related with this tag + processed: number // the total number of chunks stored and queued for sending + synced: number // the total number of chunks that are synced with the network uid: number // a unique identifier for this tag - address: string // the associated swarm hash for this tag startedAt: string // when the tag was first used } ```