Skip to main content

Bancor python carbon and carbon library. This python package is developed and maintained by Bancor Research. It is meant to assist in the design, testing, and validating of Bancor protocol behavior.

Project description

Carbon Logo


Carbon Simulator


PyPI version License: MIT Binder main Binder beta

DISCLAIMER

THIS SIMULATOR IS PROVIDED TO STUDY AND EXAMINE THE CARBON SMART CONTRACT SYSTEM. IT SHOULD NOT BE RELIED UPON TO TAKE PART IN EXECUTION CHAIN OF SOME ACTUAL TRANSACTIONS

The simulator is a work in progress with potentially broken features, unfinished sections, and a non-exhaustive overview of commands and example usage. Moreover, the entirety of the codebase and documentation is subject to change without warning. Having said this -- we will make an effort to keep the interface backwards compatible so that existing code will not break.


About Carbon

Carbon is decentralized exchange infrastructure that gives users the ability to create automated flexible trading strategies on-chain. Its key technical features are adjustable parametric bonding curves, asymmetric concentrated liquidity, and an efficient routing algorithm.

This simulator has been developed by Bancor Research to assist in the design, testing, and validation of Carbon strategies. It can be run interactively in a Jupyter notebook environment, or via Python scripting.

The permament Github URL for this repo is bancorprotocol/carbon-simulator. There is a second repo that is optimised for Binder and that is located at bancorprotocol/carbon-simulator-binder. The latter uses the version of the library in the PyPi package, so it may be a week or two behind. The Carbon project website is at carbondefi.xyz. On this site you will find in particular the litepaper, whitepaper, and information disclosure for the patent application. The simulator in its latest released version can also be accessed as JupyterLite version at simulator.bancordefi.xyz. The associated repo is at bancorprotocol/carbon-simulator-jupylite.

Getting started

If you already have Python and Jupyter installed, you can launch a Jupyter instance in the root directory of the project by running jupyter notebook and then opening the notebook CarbonSim-Example.ipynb, or any of the other notebooks in that directory.

You may run into missing modules that need to be installed via pip. In this case, either install them manually based on the list in requirements.txt and requirements_ui.txt or refer to the instructions below. We also recommend to install JupyText.

Project setup

The project should be able to run in any Python3 environment with the correct dependencies installed via pip. If you start from a Conda installation, most dependencies should already be available. Nevertheless we recommend setting up a virtual environment to ensure libraries installed for this project do not collide with other Python modules installed on the system.

Whilst this simulation is designed to run in any Python environment, we strongly recommend running it in Jupyter Notebooks for the convenience they provide.

Method 1. Quick setup

Navigate to the top level project directory and start the Jupyter server:

$ jupyter notebook

Then run the notebook CarbonSim-Example.ipynb or any of the other notebooks. If you are getting import errors, make sure all modules from requirements.txt and requirements_ui.txt are installed, eg by running

$ pip install -r requirements.txt
$ pip install -r requirements_ui.txt

or by installing the required modules manually.

The upside of this method is that you get started quickly and easily, and -- more importantly -- you have access to all the bleeding feautures in the beta branch should you choose to check out beta instead of main. It also allows you to easily make changes to the library code. The downside is that the carbon library may only work for notebooks and scripts located in the root directory of this project.

Method 2. Pip install

We are publishing this repo to pypi:carbon-simulator so you can install it with the usual

$ pip install carbon-simulator

This installs the latest version published on the main branch of the repo, as well as all dependencies. We also recommend installing JupyText for easier management of the notebooks. In the unexpected case of conflicts with your local installation, consider using a virtual environment.

When installing this way there will not be any example workbooks provided. We recommend downloading the workbooks from here to get started, starting with CarbonSim-Example.ipynb. Note that you will only have access to the features in the main branch of the repo in this case.

Method 3. Installation via setup

This method will install the carbon package as well as all its dependencies on your system. We highly recommend to do this in a virtual environment, in which case no permanent changes will be made. To install the simulator, navigate to the top level project directory, and run the installation process via

$ python setup.py install

Then again you launch a Jupyter session running the following command

$ jupyter notebook

As the carbon library is now installed on your system, you can run the simulation code from anywhere whilst the virtual environment is active. Note that outside the project directory, you only have access the branch of the repo that was checked out at the time you ran setup. Inside the project director it should pick up whatever branch you have checked out, but this may depend on your system configuration.

Usage

There are numerous usage examples in the Jupyter notebooks in the root directory of this project, and we refer to those for more elaborate examples. A very basic example for a simulation is the one from CarbonSim-Example.ipynb:

from carbon import CarbonSimulatorUI

# Set up a simulator instance, with default pair ETHUSDC
Sim = CarbonSimulatorUI(pair="ETHUSDC")

# Add a strategy. This strategy is initially seeded with 10 ETH
# and 10000 USDC. It will selling ETH between 2000-2500 USDC per ETH,
# making the received USDC available for sale. It will also be buying ETH 
# between 1000-750 USDC per ETH.
Sim.add_strategy("ETH", 10, 2000, 2500, 10000, 1000, 750)

# We can look at this order by examining the simulator state
Sim.state()["orders"]

# Someone is now trading against the pool, BUYING 1 ETH.
# The price will be driven by the 2000-2500 range.
Sim.trader_buys("ETH", 1)

# We see that that 1 ETH disappeared from the ETH curve,
# and reappeared as USDC on the other curve
Sim.state()["orders"]

# Someone is trading against the pool, SELLING 1 ETH.
# The price will be driven by the 1000-750 range
Sim.trader_sells("ETH", 1)

# Now the ETH curve is at 10 ETH, where it was initially.
# We have however taken profits of about USD 2021 on the 
# USDC account.
Sim.state()["orders"]

Branches and versioning

Branches

This repo contains two key branches, main, and beta. Their respective properties are as follows:

  • main. The main branch is the main release branch of this project, and this is the only branch that is available on PyPi. It is currently updated from beta every 1-2 weeks. The main branch will never be rewritten.

  • beta. The beta branch contains the latest features of the project. It will have usually passed the test suite, so should not be broken in obvious ways. The beta branch will usually be rewritten before it is merged into main, which happens every 1-2 weeks.

Versioning

We use semantic versioning (major.minor.patch), so the major number is changed on backward incompatible API changes, the minor number on compatible changes, and the patch number for patches and incremental changes that do not merit an increase in the minor version number.

The API in this respect is defined as "all public methods in the SimulationUI" object, as well as those in the objects it returns (currently CarbonPair and CarbonOrderUI).

Note that all modules contained in carbon.helpers are not part of the public API, and breaking changes can occur in those at any point in time. If you are using them in your own code, we recomend copying the module(s) you are using into your own codebase.

The in-library location of those objects is not part of the API, they need to be imported from the top level. There may be additional objects in the top-level of the library that are not currently considered part of the API. As of version 1.0, those objects are ExactRouterX0Y0N and analytics which we do not currently consider in a state suitable for semantic versioning.

Modules may have version numbers of their own. Those are mostly for use of the dev team and they do not follow any specific policies.

Change log

  • v2.4.1 added resources/routing area; cleaned up resources; SDK encode, decode; CarbonOrderUI yzABS; removed deprecated notebooks; CPC serialization, constructors and plots; benchmark bugfix
  • v2.4 README; CarbonOrderUI prettification; precision analysis; BaseRouter parameters as dict; benchmarks; SDK; HOURLY data set; SharedVar; ConstantProductCurve with reference NB063; additional parameters for CarbonOrderUI and as_cpc and reference book NB062; iseq; matching method test; CPCContainer
  • v2.3.2 CarbonPair display, decimals; strategy from_dct improvements; sim-related helpers including soltest, floatint; CarbonOrderUI yzABS
  • v2.3.1 cryptocompare; run_shift parameter fix; sim: colors and local use; ubuy/sell; various sim improvements; cryprocompare aggregate query; routing and benchmarking; workflows
  • v2.3 consolidation and benchmark release with minor fixes (including for uni v3 style strategies) to the features introduced since v2.2
  • v2.2.5-6 pdcompare allows inversion; dealing with numeric issues; params improvements; path interpolation; removed yaml; print_version, plt_style; numeric bugfix
  • v2.2.4 marginal price at init; also yint, but still issues; added HODL and better legend to sim; strategy object; SharedVar; NBTest bugfix; adding PathGenerator to helpers; adding StartConditions to simulation; adding uniswap constructor to strategy; adding CryptoCompare to data and helpers; updated various helpers for market data, including scaling
  • v2.2.1-3 - created Demo 7-3 (key sim); created carbon.helpers module; widgets (for Demo 7-4 which is 7-3 with widgets); Binder optimizations
  • v2.2 - benchmarks, alpha optimizer, fls, fast router, ob test, partial fill, limit amounts, CarbonOrderUI v1.6, notes folder; NBTest 46-51; Demo 3-8, 4-2, 4-3, 5-8, 7-1, 7-2
  • v2.1 - new order book methodology, improved NBTest, added functionality to CarbonOrderUY, added CarbonCurves notebook, updated demo 3-2 to the new order book code
  • v2.0 - slash notation for pair (breaking); disabled curves; remove aliases; order book functions and marginal price routing in CarbonOrderUI
  • v1.1-5 - order books; alpha router and other routers; thresholds; analytics; more examples and demoes; binder links; match constant; exclude future
  • v1.0 - initial release

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

carbon-simulator-2.4.1.tar.gz (155.4 kB view details)

Uploaded Source

Built Distributions

carbon_simulator-2.4.1-py3.8.egg (429.0 kB view details)

Uploaded Source

carbon_simulator-2.4.1-py3-none-any.whl (185.8 kB view details)

Uploaded Python 3

File details

Details for the file carbon-simulator-2.4.1.tar.gz.

File metadata

  • Download URL: carbon-simulator-2.4.1.tar.gz
  • Upload date:
  • Size: 155.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for carbon-simulator-2.4.1.tar.gz
Algorithm Hash digest
SHA256 d2026d2e7aba1165ab35e1b13b20f933755f210ef4a1e0d4dc6bbd3b7b597540
MD5 4443e13cf8092927f19ca7ba2896b7d3
BLAKE2b-256 5f6e597e136f74dd0b66bd7e0ed2d2c4f2997022a594e18455333c168deabe26

See more details on using hashes here.

File details

Details for the file carbon_simulator-2.4.1-py3.8.egg.

File metadata

  • Download URL: carbon_simulator-2.4.1-py3.8.egg
  • Upload date:
  • Size: 429.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for carbon_simulator-2.4.1-py3.8.egg
Algorithm Hash digest
SHA256 97050a5325b460ba4af3fb040e8651606182755b899505f1c1fc97298c350f91
MD5 97612534023aee68c777bd00bf410c46
BLAKE2b-256 14f0a8e44da4a23390c8a17f3ee40b1377625646a24f729f29bf2e81d74df6d8

See more details on using hashes here.

File details

Details for the file carbon_simulator-2.4.1-py3-none-any.whl.

File metadata

File hashes

Hashes for carbon_simulator-2.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c66ea85470a1f969c52c68044866623758130686f473ebe8be968bdbee204160
MD5 082e6fe074be772fcdc29737a1637e3e
BLAKE2b-256 77b9db9d26e3f3c52c3469be66a6e7bc5eb540e21a91f8bc8466501de951f001

See more details on using hashes here.

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