Converting TLO to wTLO (Binance Smart Chain)

Preparation Before sending coins to the bridge, the wallet must be optimized. Easiest way to optimize local wallet file is to open it in SimpleWallet and use “full_optimize” command. If using GUI wallet, it must have been running long enough to optimize all received coins. This can be verified by going to Settings → Preferences …

Basic operation of Binance bridges for TLO

There is two bridges for Binance, first one bridges Talleo’s own chain with Binance Smart Chain and the another bridge connects wrapped Talleo tokens on Binance Smart Chain (BSC) and Binance Chain (BBC). Talleo ↔ Binance Smart Chain TLO-BSC bridge works on same principle as TLO-ETH bridge, it embeds BSC address in payment ID field …

Optimizing all subwallets using cron script

!/bin/sh curl -s -X POST http://127.0.0.1:33777/json_rpc -H ‘Content-Type: application/json-rpc’ -d ‘{“jsonrpc”: “2.0”, “method”: “getAddresses”, “password”: “password”, “params”: {}, “id”: “1”}’ | jq ‘.result.addresses | .[]’ | xargs -I ADDR curl -s -X POST http://127.0.0.1:33777/json_rpc -H ‘Content-Type: application/json-rpc’ -d ‘{“jsonrpc”: “2.0”, “method”: “sendFusionTransaction”, “password”: “password”, “params”: {“addresses”: [“ADDR”], “destinationAddress”: “ADDR”, “threshold” : 100000000, “anonymity”: 0}, “id”: …

What if wallet rejects transaction even if there is adequate balance…

There is two main reasons why either SimpleWallet or GUI wallet rejects a transaction even if there is enough unlocked coins in the wallet: The transaction contains too many inputsThis can be caused either by too high anonymization level (mixin) or the wallet hasn’t been optimized recently. To fix this, first optimize the wallet (either …

How to fix if GUI wallet doesn’t load blockchain…

Sometimes when starting GUI wallet, it reports “Blockchain load error” and doesn’t open. There is easy fix to this that doesn’t require deleting whole blockchain and resyncing from height 0. In Windows, the GUI wallet configuration file and blockchain data files are stored in hidden directory, so Explorer must have hidden directories set as visible. …

How to add simple payment button for GUI wallet…

Any website can add simple code to request GUI wallet user to send TLO to specific address. GUI wallet must have been started once on the client machine to install the payment URL handler. Only required parameter is “amount” as the recipient address is used as path of the request. Payment ID can be optionally …

How to add simple payment button for Talleo webwallet

Any website can request payment from currently logged in Talleo webwallet using simple HTML form. Only required fields are “recipient” and “amount”. Other currently supported optional fields include “anonymity” and “paymentID”. Webwallet user must accept the payment using authentication code before it is sent. Future versions of webwallet code will support “callback” field that can …

New daemon RPC JSON methods

get_block_hashes_by_transaction_hashes This method will return block hashes of blocks that contain transactions with specified transaction hashes. Results can be limited to range of block indexes. get_block_hashes_by_payment_id This method will return block hashes of blocks that contain transactions with specified payment ID. Results can be limited to range of block indexes. get_block_indexes_by_transaction_hashes This method will return …