The [generate-clients](https://github.com/solana-program/create-solana-program/blob/main/template/clients/base/scripts/generate-clients.mjs.njk#L17) script calls the `createFromRoot` method from `codama` with two parameters. However, [the method](https://github.com/codama-idl/codama/blob/main/packages/library/src/codama.ts#L14) seems to accept only one. ```ts import * as c from 'codama' import { rootNodeFromAnchor } from '@codama/nodes-from-anchor' import { getAllProgramIdls } from './utils.mjs' // Instantiate Codama. const [idl, ...additionalIdls] = getAllProgramIdls().map((idl) => rootNodeFromAnchor(require(idl)), ) // ❌ The `createFromRoot` method only accepts 1 parameter const codama = c.createFromRoot(idl, additionalIdls) ```