A chain made of paper
Application specific sidechain node to manage public notes.
This application was built using the Horizen Sidechain SDK, a set of tools to create sidechains for the Horizen network.
The project is organized in different modules for different purposes. The more relevant ones are:
boxes
. The representation of the business model entities and its data, as Unspent Transaction Outputs (UTXOs).transactions
. The custom transactions created to follow the specification of the application's business model.core
. The core components of a sidechain node:ApplicationState
,ApplicationWallet
andApplicationModule
.api
. Extended API components, requests and response.
- Install IntelliJ Idea ๐ฟ or Java JDK 11 and Kotlin.
- Clone this repository ๐ญ๐ป.
- Open the project ๐ฅ and install the dependencies ๐ฟ.
- Execute the node by running the app from IntelliJ (
โถ๏ธ ) or run the following command in your terminaldocker run -p 9084:9084 9085:9085 8025:8025 sidechain-node
โ๐. - After building and initializing, you can access the API documentation through the
localhost:9085/swagger#/
endpoint ๐ณ. - You can also execute operations using the generated CLI tool (
notesd
) ๐ฅถ.