javascript-sdk
javascript-sdk copied to clipboard
Javascript SDK to communicate with BNB Beacon Chain.
I'm running `client.getTransactions("tbnb1uxgesw2ktt524t29zytdjjm3kv3mkuczzmjz4x")` but all I get is : `{ result: { tx: [], total: 0 }, status: 200 }` if you check [explorer](https://testnet-explorer.binance.org/address/tbnb1uxgesw2ktt524t29zytdjjm3kv3mkuczzmjz4x) you will see that this account...
Hi! I was testing out this SDK and I found that the `getTransactions` method only returns the transactions from the last 24h. There is no option to give in a...
``` High Server-Side Request Forgery Package axios Patched in >=0.21.1 Dependency of @binance-chain/javascript-sdk Path @binance-chain/javascript-sdk > axios More info https://npmjs.com/advisories/1594 ```
How to create an address in the format bnb1z35wusfv8twfele77vddclka9z84ugywug48gn? When i use the feature client.createAccount() , address created in the format tbnb1z35wusfv8twfele77vddclka9z84ugywug48gn.
Is there any discord or telegram channel available to ask questions about coin? I am integrating BINANCE coin in OPOLO hardware wallet.
I am trying to broadcast txn signed from keepkey to binance chain but it is showing me some error like txn parse error https://github.com/sahilpant/keepkey-test/blob/master/sandbox/index.ts#L596 above is my code for generating...
I tried to transfer BNB by javascript-sdk This is my code: const rawTx = { msg: [{ type: "cosmos-sdk/Send", value: { inputs: [{ address: fromAddress, coins: [{ denom: "BNB", amount...
Hey, calling `client.getBalance(undefined)` returns a non zero value: `{"free":"0.55587500","frozen":"0.00000000","locked":"0.00000000","symbol":"BNB"}` However this changes daily to other random non zero numbers Calling the API directly using `http://dex.binance.org/api/v1/account/undefined` return the expected output `{"code":400,"message":"decoding...
I want to get a Transaction fee With RpcCall, Not BnB(dex) API Is there any way to get a transaction fee? I don't want to use `api/v2/transactions-in-block/${height}?format=json` and I know...
Hey there, I want to get order history with javascript-sdk but can't find any option for it . I can see that python-sdk for example have an option called: "client.get_closed_orders"...