Vertex Protocol SDK
Project description
Vertex Protocol Python SDK
This is the Python SDK for the Vertex Protocol API.
See SDK docs to get started.
Requirements
- Python 3.9 or above
Installation
You can install the SDK via pip:
pip install vertex-protocol
Basic usage
Import the necessary utilities:
from vertex_protocol.client import create_vertex_client, VertexClientMode
from vertex_protocol.contracts.types import DepositCollateralParams
from vertex_protocol.engine_client.types.execute import (
OrderParams,
PlaceOrderParams,
SubaccountParams
)
from vertex_protocol.utils.expiration import OrderType, get_expiration_timestamp
from vertex_protocol.utils.math import to_pow_10, to_x18
from vertex_protocol.utils.nonce import gen_order_nonce
Create the VertexClient providing your private key:
print("setting up vertex client...")
private_key = "xxx"
client = create_vertex_client(VertexClientMode.MAINNET, private_key)
Perform basic operations:
# Depositing collaterals
print("approving allowance...")
approve_allowance_tx_hash = client.spot.approve_allowance(0, to_pow_10(100000, 6))
print("approve allowance tx hash:", approve_allowance_tx_hash)
print("querying my allowance...")
token_allowance = client.spot.get_token_allowance(0, client.context.signer.address)
print("token allowance:", token_allowance)
print("depositing collateral...")
deposit_tx_hash = client.spot.deposit(
DepositCollateralParams(
subaccount_name="default", product_id=0, amount=to_pow_10(100000, 6)
)
)
print("deposit collateral tx hash:", deposit_tx_hash)
# Placing orders
print("placing order...")
owner = client.context.engine_client.signer.address
product_id = 1
order = OrderParams(
sender=SubaccountParams(
subaccount_owner=owner,
subaccount_name="default",
),
priceX18=to_x18(20000),
amount=to_pow_10(1, 17),
expiration=get_expiration_timestamp(OrderType.POST_ONLY, int(time.time()) + 40),
nonce=gen_order_nonce(),
)
res = client.market.place_order({"product_id": product_id, "order": order})
print("order result:", res.json(indent=2))
See Getting Started for more.
Running locally
-
Clone github repo
-
Install poetry
$ curl -sSL https://install.python-poetry.org | python3 -
- Setup a virtual environment and activate it
$ python3 -m venv venv
$ source ./venv/bin/activate
- Install dependencies via
poetry install - Setup an
.envfile and set the following envvars
CLIENT_MODE='mainnet|sepolia-testnet|devnet'
SIGNER_PRIVATE_KEY="0x..."
LINKED_SIGNER_PRIVATE_KEY="0x..." # not required
Run tests
$ poetry run test
Run sanity checks
poetry run client-sanity: runs sanity checks for the top-level client.poetry run engine-sanity: runs sanity checks for theengine-client.poetry run indexer-sanity: runs sanity checks for theindexer-client.poetry run contracts-sanity: runs sanity checks for the contracts module.
Build Docs
To build the docs locally run:
$ poetry run sphinx-build docs/source docs/build
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
vertex_protocol-3.3.1.tar.gz
(67.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vertex_protocol-3.3.1.tar.gz.
File metadata
- Download URL: vertex_protocol-3.3.1.tar.gz
- Upload date:
- Size: 67.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.11.12 Linux/6.11.0-1012-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f0f3ca2013c74922190240a2a7f27a0f5e0ede48627dc56d095a9efa97820b4
|
|
| MD5 |
9a9414c55d21d1e91e3d67c097ea88dd
|
|
| BLAKE2b-256 |
87ba34cb2f3f405f6deb1b0a0f3846d8b17824595530c376f992d277e25572d4
|
File details
Details for the file vertex_protocol-3.3.1-py3-none-any.whl.
File metadata
- Download URL: vertex_protocol-3.3.1-py3-none-any.whl
- Upload date:
- Size: 106.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.11.12 Linux/6.11.0-1012-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fca9c5d9bd7072d7ca800466cd79aec09b5e9ec4ca732fa4cc870da5cc392335
|
|
| MD5 |
45ba36158ac5c76e0a23436577fdee3d
|
|
| BLAKE2b-256 |
23c3010429fefe43d907e502ab6e065b7c856370289568c49ffa230353d48949
|