MCPcopy Create free account
hub / github.com/PolymathNetwork/polymath-core / ModuleInfo

Function ModuleInfo

CLI/commands/sto_manager.js:987–994  ·  view source on GitHub ↗
(_moduleType, _name, _address, _factoryAddress, _archived, _paused)

Source from the content-addressed store, hash-verified

985
986async function getAllModulesByType(type) {
987 function ModuleInfo(_moduleType, _name, _address, _factoryAddress, _archived, _paused) {
988 this.name = _name;
989 this.type = _moduleType;
990 this.address = _address;
991 this.factoryAddress = _factoryAddress;
992 this.archived = _archived;
993 this.paused = _paused;
994 }
995
996 let modules = [];
997

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected