`bitcoin-cli listwallets` returns `Method not found` then the wallet is disabled and you won't be able to use `ord`. Make sure `txindex=1` is set. Run `bitcoin-cli getindexinfo` and it should return something like ```json { "txindex": { "synced": true, "best_block_height": 776546 } } ``` If it only returns `{}`, `txindex` is not set. If it returns `"synced": false`, `bitcoind` is still creating the `txindex`. Wait until `"synced": true` before using `ord`. If you have `maxuploadtarget` set it can interfere with fetching blocks for `ord` index. Either remove it or set `whitebind=127.0.0.1:8333`. Installing `ord` ---------------- The `ord` utility is written in Rust and can be built from [source](https://github.com/ordinals/ord). Pre-built binaries are available on the [releases page](https://github.com/ordinals/ord/releases). You can install the latest pre-built binary from the command line with: ```sh curl --proto '=https' --tlsv1.2 -fsLS https://ordinals.com/install.sh | bash -s ``` Once `ord` is installed, you should be able to run: