Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update contracts #69

Merged
merged 4 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ The ``synthetix`` library provides an interface for interacting with the Synthet

modules/synthetix
modules/utils
modules/multicall

Sample Projects
-----
---------------

- `Project Template <https://github.com/Synthetixio/project-template-python>`_ - A template for building projects using this library. Clone this template and run the sample scripts, or use it as a starting point for your own project.
- `Order Keeper <https://github.com/Synthetixio/sample-v3-keeper>`_ - A simple keeper bot that executes trades. This is a good starting point for building bots using this library with `Silverback <https://github.com/ApeWorX/silverback/>`_.
Expand Down
6 changes: 5 additions & 1 deletion docs/source/modules/synthetix.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,11 @@ Synthetix
:members:
:private-members:

.. autoclass:: synthetix.perps.Perps
.. autoclass:: synthetix.perps.PerpsV3
:members:
:private-members:

.. autoclass:: synthetix.perps.BfPerps
:members:
:private-members:

Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="synthetix",
version="0.1.20",
version="0.1.21",
description="Synthetix protocol SDK",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand Down
Loading
Loading