Add an implementation of the kvdb traits on top of the Web IndexedDB API: https://developer.mozilla.org/fr/docs/Web/API/API_IndexedDB
The bindings to IndexedDB are already present in the web_sys crate (https://docs.rs/web-sys/0.3.24/web_sys/struct.IdbFactory.html?search=Idb), and we should use this crate to access IndexedDB.
The use-case for this is running Substrate (or parity-ethereum?) from within a browser.
I'm personally not very familiar with neither kvdb nor IndexedDB, so there might or might not be problems that I can't think of.
Add an implementation of the
kvdbtraits on top of the Web IndexedDB API: https://developer.mozilla.org/fr/docs/Web/API/API_IndexedDBThe bindings to IndexedDB are already present in the
web_syscrate (https://docs.rs/web-sys/0.3.24/web_sys/struct.IdbFactory.html?search=Idb), and we should use this crate to access IndexedDB.The use-case for this is running Substrate (or parity-ethereum?) from within a browser.
I'm personally not very familiar with neither
kvdbnor IndexedDB, so there might or might not be problems that I can't think of.