How it works
Third-party library
It communicates with Binance Chain by using binance-chain/javascript-sdk
Client URL
- Mainnet:
https://dex.binance.org
- Testnet:
https://testnet-dex.binance.org
Explorer URL
- Mainnet:
https://explorer.binance.org
- Testnet:
https://testnet-explorer.binance.org
Dependencies
Address Generation
It supports the BIP44 path derivations
.
By default, the index is 0. - 44/714/0/0
Blockchain-specific functions
Transfer multi transactions.
type MultiTransfer = {
to: Address
coins: Coin[]
}
type MultiSendParams = {
address?: Address
transactions: MultiTransfer[]
memo?: string
}
multiSend(params: MultiSendParams): Promise<TxHash>
Get multi-transfer fees.
getMultiSendFees(): Promise<Fees>