Skip to main content

Devise: An Ethereum Marketplace for Engineering Better Representations of Financial Markets

Project description

Assets aren’t listed on traditional exchanges so that hedge funds can generate alpha, but clearly markets aren’t fully efficient, and there is alpha to grab. Devise is an alternative exchange containing hundreds of synthetic assets that have been engineered from the ground-up to help fund managers hunt alpha. Synthetic assets can be accessed anonymously, and scarcity of access is guaranteed and can be audited without a trusted central party and in a fully decentralized fashion.

Devise synthetic assets are listed on Devise if and only if they provably add value to all assets already on Devise, as well as 60 of the most liquid U.S. futures (accounting for more than 90% of trading volume) as per the information-theoretical proof-of-usefulness framework described in our Yellow Paper.

Each synthetic asset on Devise is a unique data stream accessible through a crypto-powered API. An Ethereum smart-contract is used to (anonymously) control access right to the API, users are identified by their Ethereum addresses, and the Ethereum blockchain can be used as a decentralized audit system for scarcity of access.

Access to Devise is granted on a subscription basis with monthly terms renewed automatically until cancelled. Fees are paid in a custom (in-app) utility token, namely the Devise token or DVZ. The monthly fee is automatically set every month by the rental smart contract through an auction mechanism aiming at maximizing the value of the Devise alternative exchange based on clients bids, and under the scarcity constraint on the number of access. To access Devise, a client should be attributed one of 100 seats. Clients wishing to further restrict access to Devise can choose to subscribe to more than 1 seat, up to the maximum of 100, and pay a higher rent accordingly.

This repo contains the official Python 3 client supporting all Devise-related operations, as well as a Javascript library and all Solidity source code.

To learn more about Devise, checkout our primer.

Installation

The easiest way to install the devise repo is from PyPi:

$ pip install devise

Alternatively, you may clone this repo and install it:

$ git clone https://github.com/devisechain/Devise
$ cd Devise/python
$ pip install .

For more detailed installation instructions, and for information on platform specific system dependencies, please consult our Installation Guide

How To Use Our Python Package

All Devise-related operations can be performed through the DeviseClient class.

A DeviseClient object connects to the Ethereum network through a public Ethereum node both for on-chain operations (a.k.a. transactions) that require signing, and for free off-chain operations (a.k.a. calls).

For any operation requiring cryptographic signing we support the Official Ethereum Wallet, hardware wallets (Ledger Nano S and Trezor to be specific), encrypted keystore files, and clear private keys.

To use the Official Ethereum Wallet, run

from devise import DeviseClient
# Create a Devise client object to interact with our smart contracts and API.
devise_client = DeviseClient(account='0xd4a6B94E45B8c0185...', password='<your password>')

To use a hardware wallet, run

from devise import DeviseClient
# Create a Devise client object to interact with our smart contracts and API.
devise_client = DeviseClient(account='0xd4a6B94E45B8c0185...', auth_type='[ledger|trezor]')

To use a keystore file, run

from devise import DeviseClient
# Create a Devise client object to interact with our smart contracts and API.
devise_client = DeviseClient(key_file='<path to your encrypted json keystore file>', password='<your password>')

To use a clear private key, run

from devise import DeviseClient
# Create a Devise client object to interact with our smart contracts and API.
devise_client = DeviseClient(private_key='<your private key>')

The password argument is always optional. When it is needed for signing but not provided, you will be prompted to type it in every time a transaction needs to be signed.

If needed, you can override the public node used to connect to the Ethereum network by specifying your own node_url when creating your DeviseClient instance.

How To Access The Devise Alternative Exchange

In order to access the Devise alternative exchange, you need to i) have enough Devise tokens (DVZ) in your escrow account, ii) submit a bid, and iii) request data from the API if your bid is successful.

To fund your escrow account with us, run:

# Provision your escrow account with DVZ by transferring qty ETH from your Ethereum wallet to the rental Smart contract.
qty = 1000
devise_client.fund_account(amount=qty, unit='ETH', source='ETH')

# Check your remaining escrow balance in DVZ tokens
remaining = devise_client.dvz_balance_escrow

If needed, you can request historical data to assess value-add:

# Note: Historical data are free of charge, but your escrow account
# must be sufficiently provisioned to pay one month rent to be allowed
# access historical data.

# Check if you are currently allowed to request historical data.
has_access = devise_client.client_summary['historical_data_access']
print(has_access)

# Download historical weights of all leptons on the Devise alternative
# exchange and store them in the file 'devise_historical_weights.tar'
# in the current folder.
devise_client.download_historical_weights()

# Download historical returns of all leptons on the Devise alternative
# exchange and store them in the file 'devise_historical_returns.tar'
# in the current folder.
devise_client.download_historical_returns()

Once you know how many seats you want to bid for, and at what price, you can submit your bid by running

# Example: submit a bid for 10 seats on the Devise alternative exchange, for a monthly rent capped at 200,000 DVZ.
seats = 10
# Note: The limit monthly rent per seat below is indicative.
lmt_monthly_rent_per_seat = 200000
# The limit price the auction abides by is the limit price per bit of total incremental usefulness.
# If between terms leptons are added to the chain, the total incremental usefulness might change,
# and as a result you might be paying a higher rent. Your rent per seat and per unit of total
# incremental usefulness will however never exceed your specified limit price per bit.
lmt_price = lmt_monthly_rent_per_seat/devise_client.total_incremental_usefulness
devise_client.lease_all(lmt_price, seats)

To check if you won seats in the current term, run

# Check how many seats you have access to in the current term.
total_seats = devise_client.current_term_seats
has_seats = total_seats > 0
print(has_seats)

If you are entitled seats, you can request portfolio weights updates by running

# Download latests weights of all leptons on the Devise alternative exchange
# and stores them in the file 'devise_latest_weights_<yyyy-mm-dd>.tar'
# in the current folder. Data updates are available on a daily basis before 7AM ET.
latest_weights = devise_client.download_latest_weights()

For more information, checkout our wiki.

Project details


Download files

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

Source Distribution

devise-1.7.0.tar.gz (2.0 MB view hashes)

Uploaded Source

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