Code Monkey home page Code Monkey logo

cairo-docgen's Introduction

cairo-docgen

A lightweight documentation generator for Starknet Cairo smart contracts. Generates a Markdown documentation file from NATSPEC comments.

Notes & Known Limitations

  • Please note that this tool only parses functions and events in the input file. If your smart contract has external functions or events that are defined in a file other than the main contract file, they will not be parsed.
  • This tool has only been tested with Cairo lang v0.10.x and may have issues with other versions.

Usage

npx cairo-docgen <input_file_path> [output_dir]

Example

Given the following file as input:

%lang starknet

from starkware.cairo.common.cairo_builtins import BitwiseBuiltin, HashBuiltin

@storage_var
func CatName() -> (res: felt) {
}

/// @notice Emitted when the cat name is set to a new value.
/// @param newCatName The new name of the cat that was set.
@event
func CatNameSet(newCatName: felt) {
}

/// @notice Fetches the name of the cat.
/// @dev Will return 0 if the cat name was never set.
/// @return catName The current name of the cat.
@view
func getCatName{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}() -> (catName: felt) {
    let (catName) = CatName.read();

    return (catName,);
}

/// @notice Sets the name of the cat.
/// @param catName The new cat name.
@external
func setCatName{syscall_ptr: felt*, pedersen_ptr: HashBuiltin*, range_check_ptr}(catName: felt) {
    CatName.write(catName);
    return ();
}

The generated Markdown documentation file will be:

# View Functions

### getCatName

`func getCatName() -> (catName: felt)`

Fetches the name of the cat.

Will return 0 if the cat name was never set.

Outputs
| Name | Type | Description |
|------|------|-------------|
| `catName` | `felt` |  The current name of the cat.  |

# External Functions

### setCatName

`func setCatName(catName: felt)`

Sets the name of the cat.


Inputs

| Name | Type | Description |
|------|------|-------------|
| `catName` | `felt` |  The new cat name.  |

# Events

### CatNameSet

`func CatNameSet(newCatName: felt)`

Emitted when the cat name is set to a new value.


Outputs

| Name | Type | Description |
|------|------|-------------|
| `newCatName` | `felt` |  The new name of the cat that was set.  |

cairo-docgen's People

Contributors

yuval-weiss avatar

Stargazers

tcacelex avatar Vukašin Manojlović avatar Alex Metelli avatar  avatar sam avatar HAOYUatHZ avatar amanusk avatar 0xSacha avatar 0xRory avatar StarkNet 中文 | China avatar  avatar

Watchers

Vukašin Manojlović avatar

Forkers

alexlesch98

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.