2020-05-29 00:31:16 +02:00
# iotaFS
A simple script to upload / download files into / from the iota tangle for free! (Well, you pay with POW...)
2020-06-20 14:38:13 +02:00
## main.py
Fully functional poc, but has horrible performance.
## next.py
Non yet functional and I'm also no longer working on it.
Changes compared to main.py:
- switched to libfuse3
- switched to a async model
- switched to object-oriented class-structure
- switched to a way more efficient delta & milestone system
- appending data to files without a re-upload possible, if file has not been closed
(and therefore the last block is still unsealed)
2020-07-13 15:10:58 +02:00
- incremental r/w-keypair in directory-structure: mounting point in the fs can be choosen and a single folder (and all contained files / folders ) can be shared with someone else simply by giving them the r/w-keypair and last known milestone-pointer (address) for the folder
2020-06-20 14:38:13 +02:00
- sharing a folder in read-only mode by only giving them the r-key and the last known milestone-pointer
- did I mention it has 1000x better performance?
2020-07-13 15:10:58 +02:00
Development was stopped, because a iota-snapshot will remove the fs (next AND main) from the tangle and require the data to be bought from a fullnode.
2020-06-20 14:38:13 +02:00
If a transitional grace-period for snaphots gets implemented this could be circumvented by implementing a refresh, which would
2020-07-13 15:10:58 +02:00
2020-06-20 14:38:13 +02:00
- make a forced full milestone of the Genesis
- rewrite all files
2020-07-13 15:10:58 +02:00
But until such a thing is implemented I dont see the point in continuing the development on what essentially was only ment to be a poc.