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

Function ModuleInfo

CLI/commands/dividends_manager.js:777–784  ·  view source on GitHub ↗
(_moduleType, _name, _address, _factoryAddress, _archived, _paused)

Source from the content-addressed store, hash-verified

775
776async function getAllModulesByType(type) {
777 function ModuleInfo(_moduleType, _name, _address, _factoryAddress, _archived, _paused) {
778 this.name = _name;
779 this.type = _moduleType;
780 this.address = _address;
781 this.factoryAddress = _factoryAddress;
782 this.archived = _archived;
783 this.paused = _paused;
784 }
785
786 let modules = [];
787

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected