0.3.16 â€Ē Published 3 months ago

@b00ste/hardhat-dodoc v0.3.16

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

Dodoc

version npm license

Zero-config Hardhat plugin to generate documentation for all your Solidity contracts.

  • ðŸĪŠ Zero-configuration required
  • ✅ Compatible with latest Solidity versions (>= 0.8.0)
  • 🔍 Supports events, errors and external / public functions
  • 📖 Default output to Markdown
  • 🔧 Extendable using custom templates

Want to see a live example? Check out Primitive documentation!

ðŸ“Ķ Installation

First thing to do is to install the plugin in your Hardhat project:

# Using yarn
yarn add @b00ste/hardhat-dodoc

# Or using npm
npm i @b00ste/hardhat-dodoc

Next step is simply to include the plugin into your hardhat.config.js or hardhat.config.ts file:

// Using JavaScript
require('@b00ste/hardhat-dodoc');

// Using ES6 or TypeScript
import '@b00ste/hardhat-dodoc';

And you're done! Documentation will be automatically generated on the next compilation and saved into the docs folder at the root of your project.

📝 Usage

The only requirement to use Dodoc is to comment your Solidity contracts using NatSpec format. For example, given the following function:

/// @notice Does another thing when the function is called.
/// @dev More info about doing another thing when the function is called.
/// @param num A random number
/// @return A random variable
/// @custom:requirement Must be at lease 18 years old to use this function.
/// @custom:danger Another thing is extremely random, use at your own risk!
/// @custom:info Another thing 2 coming soon.
function anotherThing(uint256 num) external pure returns (uint256);

Dodoc will take care of everything and will generate the following output:

Methods

anotherThing

function anotherThing(uint256 num) external pure returns (uint256)

Does another thing when the function is called.

More info about doing another thing when the function is called.

Requirement: Must be at lease 18 years old to use this function.

Danager: Another thing is extremely random, use at your own risk!

Info: Another thing 2 coming soon.

Parameters

NameTypeDescription
numuint256A random number

Returns

NameTypeDescription
_0uint256A random variable

Dodoc is compatible with all the NatSpec tags (except custom ones for now), and can generate documentation for events, custom errors and external / public functions.

By default Dodoc generates new documentation after each compilation, but you can also trigger the task with the following command:

# Using yarn
yarn hardhat dodoc

# Or using npx
npx hardhat dodoc

🔧 Config

Dodoc comes with a default configuration but you can still tweak some parameters. To do it, change your Hardhat config file like this:

import { HardhatUserConfig } from 'hardhat/config';
import '@nomiclabs/hardhat-waffle';
import '@nomiclabs/hardhat-ethers';
import '@b00ste/hardhat-dodoc';

const config: HardhatUserConfig = {
  // Your Hardhat config...
  dodoc: {
    runOnCompile: true,
    debugMode: true,
    // More options...
  },
};

export default config;

Here are all the configuration parameters that are currently available, but as said above, all of them are entirely optional:

ParameterDescriptionDefault value
runOnCompileTrue if the plugin should generate the documentation on every compilationtrue
includeList of all the contract / interface / library relative paths or names to include in the documentation generation. An empty array will generate documentation for everything[]
excludeList of all the contract / interface / library relative paths or names to exclude from the documentation generation[]
librariesUsed to separate the generated docs into two folders: 1. contracts & 2. libraries. Add the relative paths or name of the library to the array if you want to separate it to the libraries folder.[]
outputDirOutput directory of the documentationdocs
templatePathPath to the documentation template./template.sqrl
debugModeTest mode generating additional JSON files used for debuggingfalse
keepFileStructureTrue if you want to preserve your contracts file structure in the output directorytrue
freshOutputTrue if you want to clean the output directory before generating new documentationtrue
helpersList of objects with helperName & helperFunc, helperFunc MUST be of type HelperFunction from squirrelly.js[]

💅 Customize

Dodoc integrates a super cool template engine called SquirrellyJS, allowing anyone to create new output formats easily.

You can checkout the default Markdown template to get some inspiration, as well as SquirrellyJS documentation to learn more about it. Feel free to be creative, any kind of output such as Markdown, MDX, HTML or even JSON is supported!

Once you're satisfied, simply refer to your template using the templatePath parameter in your configuration and Dodoc will use it to output the documentation!

⛑ Help

Feel free to open an issue if you need help or if you encounter a problem! Here are some already known problems though:

  • Due to the technical limitations of the Solidity compiler, the documentation of private functions is not rendered.
  • Functions that are not commented at all might not be rendered.
  • State variables overriding functions defined by an interface might "erase" the name of the parameters. A current workaround is to name the function parameters using the _0, _1, ... format.
0.3.16

3 months ago

0.3.9

10 months ago

0.3.15

8 months ago

0.3.14

8 months ago

0.3.13

8 months ago

0.3.12

8 months ago

0.3.11

9 months ago

0.3.10

9 months ago

0.3.6

10 months ago

0.3.5

10 months ago

0.3.8

10 months ago

0.3.7

10 months ago

0.3.2

10 months ago

0.3.4

10 months ago

0.3.3

10 months ago

0.3.1

11 months ago

0.3.0

11 months ago