Read this before posting

Welcome to the Lisk Research forum. Here you can participate and contribute towards research for improving the Lisk project. The main purpose is to propose and discuss Lisk Improvement Proposals (LIPs) as part of the process outlined in the LIP purpose and guidelines.

When you post on this site, you accept that your submitted content is released into the public domain (CC0).

Please keep in mind that the purpose of the forum is to discuss scientific topics. In particular, ensure that your posts are information-rich and contribute to the discussion.

For other questions or discussions visit one of our other community channels:

  • Lisk chat: The main Lisk community internal communication channel.
  • r/Lisk: General discussions on Lisk related topics.
  • Twitter: The primary Lisk community external communication channel.
  • Lisk Dev forum: The Lisk Dev forum is for technical and non-technical questions and discussions regarding the Lisk SDK or other Lisk products.

Tips for getting started

Markdown

You can structure and format your content using Markdown.

LaTeX Equations

You can insert mathematical expressions in your post by using LaTeX. This can be done in inline mode using single $ signs. For instance, the expression

$\sum_{k=0}^n k = \frac{n \cdot (n+1)}{2}$

is displayed as \sum_{k=0}^n k = \frac{n \cdot (n+1)}{2}.

The other option is display mode using double $$ signs, which displays the content on a dedicated line. For instance, the expression

$$
\sum_{k=0}^n k = \frac{n \cdot (n+1)}{2}
$$

is shown as

\sum_{k=0}^n k = \frac{n \cdot (n+1)}{2}.

Graphviz diagrams

You can easily create Graphviz diagrams and graphs using a simple text language. See also GraphViz Pocket Reference and the example below for getting started.

[graphviz engine=dot]
digraph {
  L[color=blue, style=filled, fillcolor=deepskyblue];
  k[shape=diamond];
  L -> i;
  i -> s;
  s -> k;
  k -> s;
}
[/graphviz]
L L i i L->i k k s s k->s i->s s->k