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

Function ApprovalDetail

CLI/commands/transfer_manager.js:816–822  ·  view source on GitHub ↗
(_from, _to, _allowance, _expiryTime, _description)

Source from the content-addressed store, hash-verified

814
815async function getApprovals() {
816 function ApprovalDetail(_from, _to, _allowance, _expiryTime, _description) {
817 this.from = _from;
818 this.to = _to;
819 this.allowance = _allowance;
820 this.expiryTime = _expiryTime;
821 this.description = _description;
822 }
823
824 let results = [];
825 let approvalDetails = await currentTransferManager.methods.getAllApprovals().call();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected