Home

Awesome

šŸ’Ž Vertices SDK

šŸ“‘ Specifications

The Vertices SDK provides developers with an easy way for devices to interact with Blockchains.

We are doing our best to achieve those goals:

At Vertices Network, we want to free your mind from the hassle of a safe design. Here are other projects we are working on:

āš ļø IMPORTANT

šŸ§­ Repository structure

.
ā”œā”€ā”€ CMakeLists.txt      # root CMakeLists: use it if you want to try the examples
ā”œā”€ā”€ examples            # examples
ā”‚   ā”œā”€ā”€ unix            # Unix example to run the wallet on your machine or Raspberry Pi...
ā”‚   ā””ā”€ā”€ ...             # more to come
ā”œā”€ā”€ external            # external libraries
ā”‚   ā”œā”€ā”€ mpack           # we've got mpack for example
ā”‚   ā””ā”€ā”€ cJson           # cJSON to parse JSON payloads
ā”œā”€ā”€ inc                 # public include directory: you'll need those files to use the library
ā”‚   ā”œā”€ā”€ vertices.h      # for example, `vertices.h`
ā”‚   ā””ā”€ā”€ ...
ā”œā”€ā”€ lib                 # 
ā”‚   ā”œā”€ā”€ inc             # "private" header files, used within the library
ā”‚   ā”œā”€ā”€ algorand        # implementation of Vertices with Algorand. The Algorand provider is the first implemented.
ā”‚   ā”œā”€ā”€ http            # HTTP wrappers functions, GET, POST... several implementations available for several stacks (libcurl, ESP-IDF...)
ā”‚   ā”œā”€ā”€ CMakeLists.txt  # CMake of the Vertices SDK, exports a package to be imported in your project, see examples' CMakeLists
ā”‚   ā””ā”€ā”€ ...             # source files
ā”œā”€ā”€ mdk                 # the SDK is running on several architecture, those files provide some compiler abstraction
ā”‚   ā””ā”€ā”€ compilers.h
ā””ā”€ā”€ utils               # tools to make things easier, clearer, smarter :) 
    ā””ā”€ā”€ utils.cmake

šŸ§° Installation

This repository is intended to be used as an external component to your project such as a submodule.

# clone into a directory
git clone <url> [path]
# clone into a directory including its submodules
git clone --recurse-submodules <url> [path]
# clone as submodule into an optionally specified location
git submodule add <url> [path]

Checkout the documentation to get started.

šŸ”œ We might also provide a Docker container once we have set up CI/CD.

Configuration

A config file provides an easy way to configure the SDK: include/vertices_config.h. The file is fully documented.

Compilation

CMake is currently used to build the library and examples (GNU Make is on the roadmap).

CMake

In order to build the source using CMake in a separate directory (recommended), just enter at the command line:

mkdir build && cd build
cmake ..

# build static library: lib/libvertices.a
make vertices

# build Unix example
make unix_example

Make

šŸ‘Ž Soon.

šŸš€ Getting started

šŸ‘‰ More to come about how to import the package into your build system.

šŸ’” Vertices is providing examples with various major SDKs, such as the ESP-IDF for Espressif microcontrollers. You can probably copy-paste our source code into your project šŸ™‚.

Examples

Full documentation is available at docs.vertices.network.

šŸ“ Tests

Make sure you have cpputest installed:

From /tests you will be able to launch the unique command to run all the tests:

make

Checkout the Readme for more information.

šŸ™Œ Contributing

šŸ¤— We gratefully accept bug reports and contributions from the community.

  1. Check for open issues or start a discussion around a feature idea or a bug.
  2. Fork the repository on GitHub to start making your changes. As a general rule, you should use the "development" branch as a basis.
  3. Write a test which shows that the bug was fixed or that the feature works as expected.
  4. Send a pull request and bug us until it gets merged and published. Contributions may need some modifications, so work with us to get your change accepted!