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
23
23
24
24
``` ts
25
25
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
32
29
33
30
uid: number // a unique identifier for this tag
34
- address: string // the associated swarm hash for this tag
35
31
startedAt: string // when the tag was first used
36
32
}
37
33
```
You can’t perform that action at this time.
0 commit comments