following command should print out the current block height:
```sh
bitcoin-cli getblockcount
```
2. Second, you'll need a synced `ord` index.
- Get a copy of `ord` from [the repo](https://github.com/ordinals/ord/).
- Run `RUST_LOG=info ord index`. It should connect to your bitcoin core
node and start indexing.
- Wait for it to finish indexing.
3. Third, you'll need a wallet with UTXOs that you want to search.
Searching for Rare Ordinals
---------------------------
### Searching for Rare Ordinals in a Bitcoin Core Wallet
The `ord wallet` command is just a wrapper around Bitcoin Core's RPC API, so
searching for rare ordinals in a Bitcoin Core wallet is Easy. Assuming your
wallet is named `foo`:
1. Load your wallet:
```sh
bitcoin-cli loadwallet foo
```
2. Display any rare ordinals wallet `foo`'s UTXOs:
```sh
ord --wallet foo --index-sats wallet sats
```
### Searching for Rare Ordinals in a Non-Bitcoin Core Wallet
The `ord wallet` command is just a wrapper around Bitcoin Core's RPC API, so to