liquidswap-sdk

Liquidswap Python SDK


Keywords
liquidswap, python, sdk
License
GPL-3.0
Install
pip install liquidswap-sdk==0.0.2

Documentation

liquidswap-sdk-python

Install

https://pypi.org/project/liquidswap-sdk/ pip install liquidswap-sdk

Functions

import from liquidswap_sdk.client import LiquidSwapClient

new a client liquidswap_client = LiquidSwapClient(node_url, tokens_mapping, wallet_path)

get the output amount from given input amount liquidswap_client.calculate_rates("APTOS", "USDT", 1)

swap token liquidswap_client.swap("APTOS", "USDT", 1, usdt_out)

get token balance liquidswap_client.get_token_balance("APTOS")

register token liquidswap_client.register("USDT")

How to use

  1. create your config

  2. add token addresses you want to trade to tokens_mapping

  3. make sure there is some APT in your wallet of wallet_path

  4. make yout own script! (check: example)

  5. if you are ready to mainnt, change the node_url to https://fullnode.mainnet.aptoslabs.com/v1

WIP:

  • convert_to_decimals
  • calculate_rates
  • swap
  • create pypl package