Ordinal Commands
This is a small list of various commands and their examples.
Last updated
This is a small list of various commands and their examples.
Last updated
--dry-run
Dry run allows you to construct the transaction without signing or broadcasting. This provides a fee estimate and confirms the rest of your command is constructed correctly. --dry-run
can be added to the end of any commands.
Command: ord wallet inscribe --fee-rate <FEE_RATE> --file "FILE" --dry-run
Example: ord wallet inscribe --fee-rate 10 "D:\Files\1.txt" --dry-run
A standard inscription.
Command: ord wallet inscribe --fee-rate <FEE_RATE> --file "FILE"
Example: ord wallet inscribe --fee-rate 10 "D:\Files\1.txt"
--destination <ADDRESS>
Inscribe and send to specified address.
Command: ord wallet inscribe --fee-rate <FEE_RATE> --file "FILE" --destination <ADDRESS>
Example: ord wallet inscribe --fee-rate 10 --postage 330sats --file "D:\Files\1.txt" --destination bc1pwdreq8nxulu96p2zrxmmfgcnhfg05vlw85clqx22s5qtx9ah9dzshcj4lc
Command: ord wallet inscribe --fee-rate <FEE_RATE> --postage <POSTAGE> --file "FILE"
Example: ord wallet inscribe --fee-rate 10 --postage 330sats --file "D:\Files\1.txt"
Command: ord wallet inscribe --fee-rate <FEE_RATE> --json-metadata <JSON_METADATA> --file "FILE"
Example: ord wallet inscribe --fee-rate 10 --json-metadata "D:\Files\metadata.json" --file "D:\Files\1.txt"
Command: ord wallet inscribe --fee-rate <FEE_RATE> --parent <PARENT_INSCRIPTION_ID> --file "CHILD_FILE"
Example: ord wallet inscribe --fee-rate 10 --parent b03f8f87e64eeab788ad62c3ffe35e9a875c97ca802ec0ae04d932584acdc475i0 --file "D:\Files\1.txt"
Command: ord wallet inscribe --fee-rate <FEE_RATE> --batch "BATCH_FILE"
Example: ord wallet inscribe --fee-rate 10 --batch "D:\Files\batch.yaml"
Command: ord wallet inscribe --fee-rate <FEE_RATE> --satpoint <TXID:OUTPUT:SAT> --file "FILE"
Example (10th sat in that utxo): ord wallet inscribe --fee-rate 10 --satpoint 5ffab6b75dbfa7830a2d4a8520f13d6c7aa095688616af23c82a4da4c7af2e82:0:10 --file "D:\Files\1.txt"
--index-sats index
creates a full sat index allowing the tracking of individual sats. If you already have an index.redb you will need to either rename or delete it first.
Command: ord --index-sats index run
--postage <POSTAGE>
Inscribe with a specified postage for reduced padding (default is 10k sats).
--json-metadata <JSON_METADATA>
Inscribe with JSON metadata.
--parent <PARENT_INSCRIPTION_ID>
Inscribe a file with a specified parent inscription ID.
--batch "BATCH_FILE"
Perform batch inscriptions by specifying a batch file.
--satpoint <TXID:OUTPUT:SAT>
Create an inscription on a specific sat in your wallet.