UNPKG

godprotocol

Version:

A distributed computing environment for Web 4.0 — integrating AI, decentralisation, and virtual computation.

18 lines (13 loc) 300 B
import Chain from "./Chain.js"; class Blockweb{ constructor(mgr){ this.mgr = mgr; this.chains = new Object() } set = async(physical_address, parent)=>{ let folder = new Chain(physical_address, parent) await folder.sync() return folder; } } export default Blockweb