representing the same data. Exotic data types, such as tags, floats, and bignums, and encoding such as indefinite values, may fail to display correctly or at all. Contributions to `ord` to remedy this are welcome. Example ------- Since CBOR is not human readable, in these examples it is represented as JSON. Keep in mind that this is *only* for these examples, and JSON metadata will *not* be displayed correctly. The metadata `{"foo":"bar","baz":[null,true,false,0]}` would be included in an inscription as: ``` OP_FALSE OP_IF ... OP_PUSH 0x05 OP_PUSH '{"foo":"bar","baz":[null,true,false,0]}' ... OP_ENDIF ``` And rendered as: ```
...
metadata
foo
bar
baz
  • null
  • true
  • false
  • 0
...
``` Metadata longer than 520 bytes must be split into multiple fields: ``` OP_FALSE OP_IF ...