MCPcopy Create free account
hub / github.com/dethcrypto/TypeChain / getFunctionDocumentation

Function getFunctionDocumentation

packages/typechain/src/parser/abiParser.ts:267–273  ·  view source on GitHub ↗
(
  abiPiece: RawAbiDefinition,
  documentation?: DocumentationResult,
)

Source from the content-addressed store, hash-verified

265}
266
267export function getFunctionDocumentation(
268 abiPiece: RawAbiDefinition,
269 documentation?: DocumentationResult,
270): FunctionDocumentation | undefined {
271 const docKey = `${abiPiece.name}(${abiPiece.inputs.map(({ type }) => type).join(',')})`
272 return documentation && documentation.methods && documentation.methods[docKey]
273}
274
275function parseConstructor(
276 abiPiece: RawAbiDefinition,

Callers 1

parseFunctionDeclarationFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…