python-idex
python-idex copied to clipboard
IDEX v3 Exchange REST API python implementation
this code from Contract function client = Client(api_key, address, private_key) tx_options = TransactionOptions(gas=150000, gas_price=20000000000) client.deposit_funds( asset="USD", quantity=1123, tx_options=tx_options, ) error File "/Users/PycharmProjects/pythonProject/pythonProject2/test_del_deposits.py", line 20, in client.deposit_funds( File "/opt/homebrew/lib/python3.9/site-packages/idex/client.py", line 1219,...
i making deposit matic from example here, but taking error File "/Users/PycharmProjects/pythonProject/pythonProject2/svalka/test_del_deposits.py", line 16, in client.associate_wallet(wallet_address=wallet_address) File "/opt/homebrew/lib/python3.9/site-packages/idex/client.py", line 840, in associate_wallet return self._post("wallets", sign_type=SignType.TRADE, data={"wallet": wallet_address}) File "/opt/homebrew/lib/python3.9/site-packages/idex/client.py", line...
Hi I've Been Trying To Withdraw funds from the "withdraw_funds" method and I've defined my api_key, api_secret, private_key in my idex client but I'm getting the error below? has anyone...
When trying to use websockets.py for subscribing to idex data, ia have an error: " Traceback (most recent call last): File "C:/Users/Administrator/PycharmProjects/untitled/IDEXbot.py", line 141, in loop.run_until_complete(main()) File "C:\Users\Administrator\miniconda3\lib\asyncio\base_events.py", line 583,...
Hello The documentation says that you can add custom parameters to the POST requests like so: "client.get_ticker('ETH_SAN', requests_params={'timeout': 5})" but this results in the TypeError "got an unexpected keyword argument...
The old version had this format: `Client(address, privKey)` but the new version has this format `Client(apiKey, address, privKey)` If you leave the api key out and use it like the...