No, not yet.
The instructions on the second post in this thread seem to indicate for us to use bitcoind. Is that safe? Does make sure all of the input addresses are identical?
Here's what I've done.
Setup bitcoin with the following config
rpcpassword=yo
txindex=1
server=1
cd counterpartyd
git describe
v0.1-17-g3bc6a3d
cat ~/.config/counterpartyd/counterpartyd.conf
[Default]
rpc-connect=localhost
rpc-port=8332
rpc-user=bitcoinrpc
rpc-password=yo
./counterpartyd.py server
Then I get
File "./counterpartyd.py", line 405, in
util.bitcoind_check(db)
File "/home/X/counterpartyd/lib/util.py", line 18, in bitcoind_check
block_count = bitcoin.rpc('getblockcount', [])
File "/home/X/counterpartyd/lib/bitcoin.py", line 36, in rpc
response = requests.post(config.RPC, data=json.dumps(payload), headers=headers)
File "/usr/lib/python3/dist-packages/requests/api.py", line 85, in post
return request('post', url, data=data, **kwargs)
File "/usr/lib/python3/dist-packages/requests/api.py", line 40, in request
return s.request(method=method, url=url, **kwargs)
File "/usr/lib/python3/dist-packages/requests/sessions.py", line 229, in request
r.send(prefetch=prefetch)
File "/usr/lib/python3/dist-packages/requests/models.py", line 468, in send
url = self.full_url
File "/usr/lib/python3/dist-packages/requests/models.py", line 382, in full_url
netloc = netloc.encode('idna').decode('utf-8')
File "/usr/lib/python3.2/encodings/idna.py", line 167, in encode
result.extend(ToASCII(label))
File "/usr/lib/python3.2/encodings/idna.py", line 73, in ToASCII
raise UnicodeError("label empty or too long")
UnicodeError: label empty or too long
the bitcoin.conf shouldn't have daemon=1?
Those instructions are for using Bitcoind as the backend for counterpartyd, and then using counterpartyd to burn (entirely safely), not for using Bitcoind to burn BTC directly (which would, at this time, be unsafe).
xnova, when he gets back online soon, should be able to help fix that bug you and a few others are having. I don't think that the daemon=1 option is the problem.