Skip to content

Releases: gmart7t2/ord

0.5.1-gm12

12 Apr 14:56
Compare
Choose a tag to compare

Added

  • Add the inscription number and the satoshi number to the wallet inscriptions output.
  • Add --no-broadcast flag to wallet inscribe to prevent it broadcasting any transactions.
  • Add --coin-control flag to wallet inscribe and wallet send to have those commands only spend utxos given with the --utxo flag.
  • Add decode command to dump the contents of an inscription to a file, even if it isn't confirmed yet.

Changed

  • Alter the behavior of --dump in wallet inscribe. It no longer inhibits transaction broadcast.
  • Fixed a couple of typos.

0.5.1-gm11

07 Apr 17:30
Compare
Choose a tag to compare
  • Add decode subcommand to parse inscription data from specified tx input.
  • Check the commit transaction weight against the standardness limit when inscribing.

0.5.1-gm9

06 Apr 16:05
Compare
Choose a tag to compare

Added

  • Add --dump flag to wallet inscribe to have it dump the raw hex transactions rather than broadcasting them.

0.5.1-gm10

06 Apr 17:51
Compare
Choose a tag to compare

Changed

  • Have wallet inscribe --dump also display the recovery descriptors.

0.5.1-gm8

05 Apr 16:34
Compare
Choose a tag to compare

Changed

  • Allow multiple files to be inscribed by a single wallet inscribe command. You will want to increase mempool limits if inscribing a lot of files at a time. In bitcoin.conf:
    limitdescendantsize=11111
    limitdescendantcount=1111
    limitancestorcount=1111
    maxmempool=555

0.5.1-gm7

03 Apr 23:26
Compare
Choose a tag to compare

Changed

  • Add --outpoint flag to find to allow searching in specific outpoints.
  • Add the end of the range and the offset into the outpoint to the output of the list subcommand.
  • Add --uncommon flag to inscriptions to only list inscriptions on sats that are uncommon or rarer.

0.5.1-gm6

02 Apr 01:34
Compare
Choose a tag to compare

Added

  • Add inscriptions command to list all inscriptions. (ordinals#1996)

0.5.1-gm5

31 Mar 19:52
Compare
Choose a tag to compare

Changed

  • Don't try to create the default data directory if --index overrides it. Create the specified directory instead. (ordinals#1991)

Added

  • Add flags to allow setting the postage amount for wallet inscribe and wallet send. (ordinals#1994)

0.5.1-gm4

31 Mar 12:58
Compare
Choose a tag to compare

Added

  • Accept a second parameter to find to allow finding ranges of sats, not just single sats. (ordinals#1992)

0.5.1-gm3

27 Mar 02:37
Compare
Choose a tag to compare
  • Replaced the --unconfirmed flag for wallet send and wallet inscribe with --utxo to allow providing multiple unconfirmed UTXOs for use when sending or inscribing. It is the user's responsibility to ensure the provided UTXOs contain no inscriptions. ord won't check that for you.