python-binance-chain icon indicating copy to clipboard operation
python-binance-chain copied to clipboard

Binance Chain Exchange API python implementation for automated trading

Results 31 python-binance-chain issues
Sort by recently updated
recently updated
newest added

I have a lot of network parameters, how to get network by theese parameters?(wif_prefix_hex, address_prefix_hex, pay_to_script_prefix_hex, bip32_prv_prefix_hex and others)

hi, can we use it for trading on panckaeswap?

I have tried in my local computer to install with Python 3.7 and I got an anaconda error: ` error: command '/home/x/anaconda3/bin/x86_64-conda_cos6-linux-gnu-cc' failed with exit status 1` I tried with...

Can this code also be used to interact with the Binance Smart Chain?

Hello everyone, This wrapper should use a better library instead of secp256k1-py because it depended on the native secp256k1, which its installation is hard for some devs (most likely in...

Hi. I'm running the following code : `signing_client = HttpApiSigningClient('http://127.0.0.1:8000', username='sam', password='mypass')` `client = HttpApiClient(env=testnet_env)` `transfer_msg = TransferMsg(` `symbol='BNB',` ` amount=1,` `to_address='tbnb15lq6x48g3pvaqjwhqfg4nygx63q03zsvk9rlxs')` `signed_msg = signing_client.sign_transfer(transfer_msg, wallet_name='wallet_3')` `res = signing_client.broadcast_transfer(signed_msg, wallet_name="wallet_3")`...

So I tried implementing the websockets code from [here](https://github.com/sammchardy/python-binance-chain/blob/master/README.rst#websockets) But I get some strange error messages. First this code `bcsm = await BinanceChainSocketManager.create(loop, handle_evt, address2, env=testnet_env)` Does not work because...

please help get client from binance.us, I want to get orders, and make orders

get_tx('hash') 总是报 Invalid params ?

I am trying to retrieve the list of transactions for a specific address but it always returns an empty list. ``` prod_env = BinanceEnvironment.get_production_env() client = HttpApiClient(env=prod_env) client.get_transactions(address='bnb17pd7wd7xp5636vtnsyld8x8ec4dv5t0d0y9xc7') ``` problem...