Skip to main content

Project Origin ledger SDK

Project description

# Ledger-SDK

The goal of this repository is to create a simple and common way to interact with the Ledger of Origins that is a part of Project Origin.

This is work in progress, more documentation will be written as the project progresses.

# Requirements

The following four libraries are required to be installed.

pkg-config libsecp256k1-dev gcc libzmq3-dev

# Keys

TODO: A whole section where there will be info on key management.

# Using the SDK

There are a number of request that can be executed to the ledger, these are:

  • PublishMeasurementRequest

  • IssueGGORequest

  • TransferGGORequest

  • SplitGGORequest

  • RetireGGORequest

The first two are only for issuing bodies, and will be denied if tried.

To execute a request one must first import the ledger, batch and a request type

from origin_ledger_sdk import Ledger, Batch, TransferGGORequest

## Transfer request

Next one can create a new TransferGGORequest, This request requires two keys as input. First key should be the private extended key that contains a GGO. Second should be the address where the GGO must be transferred to.

## Batch

After the request has been created, we must create a batch using a another key. And then the request is added to the batch. Multiple request can be added to the same batch. Which insures all or none of the transactions are executed.

batch = Batch(signer_key=key) batch.add_request(request)

BEWARE - everything done in one batch can be seen by anyone as a single batch and therefore know they have been performed by the same entity. So one should be careful about what one bundles in a single batch.

## Executing a batch

Last thing to do is to send the batch to the ledger. Create an instance of the Ledger with the url to the public endpoint Everything on the ledger is asynchronous, so a handle is returned, on which a user can request the status of the batch.

ledger = Ledger(’https://url-to-ledger’)

# Send the batch to the ledger to execute. handle = ledger.execute_batch(batch)

# Request status of the batch. status = ledger.get_batch_status(handle)

# Source code

Make sure to upgrade your system packages for good measure:

pip install –upgrade –user setuptools pip pipenv

Then install project dependencies:

pipenv install

To run the tests:

pipenv run pytest

# Push to pypi

python3 setup.py bdist_wheel python3 -m twine upload dist/* –repository project_origin

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Origin_Ledger_SDK-0.1.8-py3-none-any.whl (15.2 kB view details)

Uploaded Python 3

File details

Details for the file Origin_Ledger_SDK-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: Origin_Ledger_SDK-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 15.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.9

File hashes

Hashes for Origin_Ledger_SDK-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 10fbcbc9e18b48fd7a1efec42291350347e43020282885a8f34f5e9882b59f79
MD5 67822e47fac04f5ad4d5e9d3fcb22bcd
BLAKE2b-256 672cfbc0907a8c7255f2adc3be8717224abcf873f0b362f867133a2db36c16e6

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page