Interface ModuleQueryFunctions
interface ModuleQueryFunctions { manifest: ( maxDepth?: number, ignoreAddresses?: Lowercase<string>[], ) => Promisable<ModuleManifestPayload>; manifestQuery: ( account: AccountInstance, maxDepth?: number, ignoreAddresses?: Lowercase<string>[], ) => Promisable< ModuleQueryResult<ModuleManifestPayload, ModuleError, BoundWitness>, >; moduleAddress: () => Promisable< (
AddressPreviousHashPayload | AddressPayload)
[], >; state: () => Promisable<Payload[]>; stateQuery: ( account: AccountInstance, ) => Promisable<ModuleQueryResult<Payload, ModuleError, BoundWitness>>;} Properties
manifest
manifest: ( maxDepth?: number, ignoreAddresses?: Lowercase<string>[],) => Promisable<ModuleManifestPayload> manifestQuery
moduleAddress
state
stateQuery