Skip to content

Commit 3026872

Browse files
fix: updated tag reference to bee-js v0.5.0 (#19)
1 parent 2e5e8de commit 3026872

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

docs/user-documentation/track-upload.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,11 @@ The status of your upload can be followed by using `tags`. A `tag` is a label gi
2323

2424
```ts
2525
interface Tag {
26-
total: number // total number of chunks belonging to a tag
27-
split: number // number of chunks already processed by splitter for hashing
28-
seen: number // number of chunks already seen
29-
stored: number // number of chunks already stored locally
30-
sent: number // number of chunks sent for push syncing
31-
synced: number // number of chunks synced with proof
26+
total: number // the total number of chunks for upload(s) related with this tag
27+
processed: number // the total number of chunks stored and queued for sending
28+
synced: number // the total number of chunks that are synced with the network
3229

3330
uid: number // a unique identifier for this tag
34-
address: string // the associated swarm hash for this tag
3531
startedAt: string // when the tag was first used
3632
}
3733
```

0 commit comments

Comments
 (0)