You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An Ownable can be imported as zip file. The zip file contains the files of the Ownable package, plus the event chain (as json file). The Ownable service unzips the zip to a temporary directory.
The chain is stored in memory, while the package files are copied to the final path on the file system (should be using the CID as directory name, but see #83).
In the SDK wallet, the React application inlines all assets into the HTML and loads the Wasm file. This is posted to the Ownable iframe.
In universal wallet, each ownable is loaded inside a Webview (see #85). Preferably the webview has access to the package file, so we can inline the HTML and load the wasm within the Webview, rather than the top application. That way we can use the functionality of the browser like DOMParser.
The text was updated successfully, but these errors were encountered:
An Ownable can be imported as zip file. The zip file contains the files of the Ownable package, plus the event chain (as json file). The Ownable service unzips the zip to a temporary directory.
universal-wallet/src/services/Ownables/Ownable.service.ts
Line 43 in 502db9f
The chain is stored in memory, while the package files are copied to the final path on the file system (should be using the CID as directory name, but see #83).
universal-wallet/src/services/Ownables/Package.service.ts
Line 82 in 502db9f
In the SDK wallet, the React application inlines all assets into the HTML and loads the Wasm file. This is posted to the Ownable iframe.
In universal wallet, each ownable is loaded inside a Webview (see #85). Preferably the webview has access to the package file, so we can inline the HTML and load the wasm within the Webview, rather than the top application. That way we can use the functionality of the browser like DOMParser.
The text was updated successfully, but these errors were encountered: