File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed
Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff 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
2525interface 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```
You can’t perform that action at this time.
0 commit comments