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

Function ModuleInfo

CLI/commands/transfer_manager.js:2624–2631  ·  view source on GitHub ↗
(_moduleType, _name, _address, _factoryAddress, _archived, _paused)

Source from the content-addressed store, hash-verified

2622
2623async function getAllModulesByType(type) {
2624 function ModuleInfo(_moduleType, _name, _address, _factoryAddress, _archived, _paused) {
2625 this.name = _name;
2626 this.type = _moduleType;
2627 this.address = _address;
2628 this.factoryAddress = _factoryAddress;
2629 this.archived = _archived;
2630 this.paused = _paused;
2631 }
2632
2633 let modules = [];
2634

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected