Connect to Cardano
Yano defaults to Cardano preprod, with the upstream host preprod-node.world.dev.cardano.org, port 30000, and network magic 1 in the bundled application configuration.
From an extracted distribution:
./yano.sh start:preprodOther packaged network profiles include mainnet, preview, and sanchonet. Use a separate storage directory for each network. Do not point a new network profile at another network’s chain state.
Configure the node
Section titled “Configure the node”Place overrides in config/application.yml relative to the working directory. For example:
yano: storage: path: ./chainstate-preprod remote: host: preprod-node.world.dev.cardano.org port: 30000Profiles compose with a comma-separated list. Network profiles set genesis/network values; additional profiles enable optional behavior:
./yano.sh start:preprod,relay./yano.sh start:preprod,walletThe first enables the packaged relay profile. The second enables wallet discovery indexes and requires a fresh sync for complete history.
Observe synchronization
Section titled “Observe synchronization”curl -fsS http://localhost:7070/api/v1/statuscurl -fsS http://localhost:7070/api/v1/node/tipReadiness and sync completion are different. A healthy process can still be catching up. Compare the local tip, remote tip, peer state, and recent progress before relying on current data.
The N2N server normally listens on 13337. A downstream consumer must use matching network magic and genesis. For a local devnet, that magic is 42; do not connect a public-network consumer using it.
Upstream selection and validation
Section titled “Upstream selection and validation”Yano supports trusted-single, trusted-failover, static-multi, and p2p-relay modes. See upstream configuration for their tradeoffs and the current validation boundary.