UNPKG

godprotocol

Version:

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

13 lines (9 loc) 242 B
import Storage from "./functions/storage.js"; class Callable extends Storage { constructor(payload, account) { super(payload.config, account); this.value = payload.value; this.type = 'callable' } } export default Callable;