Releases: gmart7t2/ord
0.5.2-gm4
Changed
- Shorten the
--destination-csv
flag forwallet inscribe
to just--csv
. - If no
--destination
or--csv
flag is provided towallet inscribe
, generate a different destination address for each inscription. - Allow multiple
--destination
flags towallet inscribe
. If there are less destinations than files to inscribe, cycle through the destinations.
0.5.2-gm3
Added
- Add
--destination-csv
flag towallet inscribe
to provide a file containing a list of<destination>,<filename>
pairs when inscribing.
Changed
- Don't have
--no-broadcast
imply--no-backup
inwallet inscribe
.
0.5.2-gm2
Added
- Add
amount
andcontent-type
fields toord inscriptions --number
andord inscriptions --id
output.
0.5.2-gm1
Added
- Add
--id
and--number
flags toord inscriptions
to list specific inscriptions by inscriptionid or by inscription number.
0.5.1-gm18
Changed
- Drop the bitcoin connection while waiting for commit to confirm.
0.5.1-gm17
Changed
- While waiting for commit tx to confirm, don't fail if we are temporarily unable to talk to the bitcoin client. Attempt reconnecting to it.
0.5.1-gm16
Changed
- Close the index database before starting to wait for the commit tx to confirm. This allows other instances of ord to run while we're waiting.
0.5.1-gm15
Added
- Add
--max-inputs
flag towallet send
(for inscriptions and satpoints) andwallet inscribe
to limit the number of inputs in the transactions they make.
Changed
- Only add the
sat
field to the output ofwallet inscriptions
if the full sat index is in use.
0.5.1-gm14
Added
- Add
--wait-after-commit
flag towallet inscribe
to have ord wait for the commit transaction to confirm before sending reveal transaction(s).
Note that it could take a long time for the commit transaction to commit, and the reveal transactions aren't broadcast until it does. If you are running ord over an ssh connection and the connection times out while it is waiting the ord process will probably be killed and the reveal transactions will never be broadcast, leaving the commit outputs stranded.
To prevent this, you can use --dump
to cause all the raw transactions to be printed to standard output before anything is broadcast. Redirect the output to a file to capture it:
ord wallet inscribe --dump --fee-rate 10 --wait-for-commit > ord.log
If you are using --dump like that you can also use --no-backup
to avoid the slow process of saving all the recovery keys to the wallet because they will be written to standard output.
Also, if running ord using an ssh connection you might consider running it inside a screen
session so that it will survive even if the ssh connection times out.
0.5.1-gm13
Added
- Add flag
--order-by-sat
to list in order of inscribed sat number. - Add flags to allow limiting output in various ways (
--max-sat
,--max-number
,--max-height
).
Changed
- Change default behavior of
ord inscriptions
to list in order of inscription number. - Modify it to work without the full sats index
- Renamed
--max
flag to--limit
.