Showing 24 of 134 total issues
Function findPayload
has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring. Open
export const findPayload = async (
archivist: ArchivistInstance,
boundWitnessDiviner: BoundWitnessDiviner,
payloadDiviner: PayloadDiviner,
pointer: PointerPayload,
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function witnessNftCollections
has 72 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const witnessNftCollections = async (node: NodeInstance) => {
const archivistMod = assertEx(await node.resolve(TYPES.Archivist), () => `Resolving: ${TYPES.Archivist}`)
const archivist = assertEx(asArchivistInstance(archivistMod), () => `Creating: ${TYPES.Archivist}`)
const nftCollectionScoreDivinerMod = assertEx(
Function getCommand
has 69 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const getCommand = async (node: NodeInstance): Promise<boolean> => {
return await new Promise((resolve) => {
terminal.once('key', (name: string) => {
if (name === 'ESCAPE') resolve(true)
if (name === 'CTRL_C') resolve(false)
Function readFileDeep
has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring. Open
export const readFileDeep = (names: string[]) => {
let depth = 0
let result: string | undefined
let filename
let resolvedPath
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function handler
has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring. Open
const handler: RequestHandler<AddressPathParams, ModuleQueryResult, PostAddressRequestBody> = async (req, res, next) => {
const { address } = req.params
const { node } = req.app
// console.log(`address post[${node.address}]: ${address}`)
// console.log('\nManifest')
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function handler
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
const handler: RequestHandler<AddressPathParams, Payload[]> = async (req, res, next) => {
const { address } = req.params
const { node } = req.app
if (address) {
let modules: ModuleInstance[] = []
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function addWitnessModuleFactories
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const addWitnessModuleFactories = (container: Container) => {
const locator = container.get<ModuleFactoryLocator>(TYPES.ModuleFactoryLocator)
locator.register(
CryptoNftCollectionWitness.factory({ providers: () => getProvidersFromEnv(8) }),
)
Function getCommand
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
export const getCommand = async (node: NodeInstance): Promise<boolean> => {
return await new Promise((resolve) => {
terminal.once('key', (name: string) => {
if (name === 'ESCAPE') resolve(true)
if (name === 'CTRL_C') resolve(false)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function handler
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
const handler: RequestHandler<AddressPathParams, ModuleQueryResult, PostAddressRequestBody> = async (req, res, next) => {
const { address } = req.params
const { node } = req.app
// console.log(`address post[${node.address}]: ${address}`)
// console.log('\nManifest')
Function getEthereumGasWitness
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const getEthereumGasWitness: WitnessProvider<Provider> = async (provider = getProvider()): Promise<AttachableWitnessInstance[]> => {
const witnesses: AttachableWitnessInstance[] = [
await EthereumGasBlocknativeWitness.create({
account: await getAccount(WalletPaths.EthereumGas.Witness.Blocknative),
config: { schema: EthereumGasBlocknativeWitnessConfigSchema },
Function generateThumbnail
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
const generateThumbnail = async (
address: string,
name: string,
score: Hash,
archivist: ArchivistInstance,
Function getLoggingErrorHandler
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
export const getLoggingErrorHandler = (logger: Logger): ErrorRequestHandler => {
return (err: PossibleError, _req: Request, res: Response, next: NextFunction) => {
if (res.headersSent) {
return next()
}
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function witnessNftCollections
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
export const witnessNftCollections = async (node: NodeInstance) => {
const archivistMod = assertEx(await node.resolve(TYPES.Archivist), () => `Resolving: ${TYPES.Archivist}`)
const archivist = assertEx(asArchivistInstance(archivistMod), () => `Creating: ${TYPES.Archivist}`)
const nftCollectionScoreDivinerMod = assertEx(
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function configureMemoryNode
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const configureMemoryNode = async (container: Container, _memoryNode?: NodeInstance, _account?: AccountInstance) => {
const node = await loadNodeFromConfig(container)
// const node: NodeInstance = memoryNode ?? (await MemoryNode.create({ account, config }))
container.bind<NodeInstance>(TYPES.Node).toConstantValue(node)
const configHashes = process.env.CONFIG_HASHES
Function connect
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const connect = async (attempts = 60, interval = 500): Promise<NodeInstance> => {
// TODO: Configurable via config or dynamically determined
const apiDomain = process.env.API_DOMAIN || 'http://localhost:8080'
const apiConfig = { apiDomain }
printLine(`Connecting to Node at: ${apiDomain}`)
Function connect
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
export const connect = async (attempts = 60, interval = 500): Promise<NodeInstance> => {
// TODO: Configurable via config or dynamically determined
const apiDomain = process.env.API_DOMAIN || 'http://localhost:8080'
const apiConfig = { apiDomain }
printLine(`Connecting to Node at: ${apiDomain}`)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function configureMemoryNode
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
export const configureMemoryNode = async (container: Container, _memoryNode?: NodeInstance, _account?: AccountInstance) => {
const node = await loadNodeFromConfig(container)
// const node: NodeInstance = memoryNode ?? (await MemoryNode.create({ account, config }))
container.bind<NodeInstance>(TYPES.Node).toConstantValue(node)
const configHashes = process.env.CONFIG_HASHES
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function defineJobs
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
export const defineJobs = (jobQueue: JobQueue, jobs: Job[]) => {
jobs.map((job) => {
const { name, task } = job
jobQueue.define(name, options, task)
if (job.onComplete) jobQueue.on(`complete:${name}`, job.onComplete)
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function getBridgeConfig
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
export const getBridgeConfig = async (args: BaseArguments): Promise<HttpBridgeConfig> => {
const { network, verbose } = args
try {
let nodeUrl = process.env.API_DOMAIN || 'http://localhost:8080'
if (network) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function addIndexes
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
export const addIndexes = async () => {
// Create the required indexes
const client = getMongoClientForIndexCreation()
try {
for (const [collection, indexSpecs] of Object.entries(indexesByCollection)) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"