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
{{ message }}
This repository was archived by the owner on Jan 27, 2026. It is now read-only.
Update VIL programs to use selective Load / Store instead of Join-xxx operations
At present VIL loads (and stores) full vectors from Blockchain, which has size limitation. If we want to support infinite portfolio size, then we must use mapping to store it, and be able to load (and store) from that mapping. VIL programs operate on vectors (because it's all vector algebra), and that is great, but we need to be able to produce a vector from select elements of mapping, so that we just match Index assets with portoflio. This simple fix will enable unlimited number of assets in portfolio.