Skip to content

Releases: gmart7t2/ord

0.5.2-gm4

26 Apr 12:43
Compare
Choose a tag to compare

Changed

  • Shorten the --destination-csv flag for wallet inscribe to just --csv.
  • If no --destination or --csv flag is provided to wallet inscribe, generate a different destination address for each inscription.
  • Allow multiple --destination flags to wallet inscribe. If there are less destinations than files to inscribe, cycle through the destinations.

0.5.2-gm3

26 Apr 00:39
Compare
Choose a tag to compare

Added

  • Add --destination-csv flag to wallet inscribe to provide a file containing a list of <destination>,<filename> pairs when inscribing.

Changed

  • Don't have --no-broadcast imply --no-backup in wallet inscribe.

0.5.2-gm2

21 Apr 15:44
Compare
Choose a tag to compare

Added

  • Add amount and content-type fields to ord inscriptions --number and ord inscriptions --id output.

0.5.2-gm1

19 Apr 12:10
Compare
Choose a tag to compare

Added

  • Add --id and --number flags to ord inscriptions to list specific inscriptions by inscriptionid or by inscription number.

0.5.1-gm18

18 Apr 16:50
Compare
Choose a tag to compare

Changed

  • Drop the bitcoin connection while waiting for commit to confirm.

0.5.1-gm17

18 Apr 15:42
Compare
Choose a tag to compare

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

17 Apr 23:49
Compare
Choose a tag to compare

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

16 Apr 18:49
Compare
Choose a tag to compare

Added

  • Add --max-inputs flag to wallet send (for inscriptions and satpoints) and wallet inscribe to limit the number of inputs in the transactions they make.

Changed

  • Only add the sat field to the output of wallet inscriptions if the full sat index is in use.

0.5.1-gm14

14 Apr 22:09
Compare
Choose a tag to compare

Added

  • Add --wait-after-commit flag to wallet 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

14 Apr 14:22
Compare
Choose a tag to compare

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.