02:06:57 Not even poll the latest header, just the latest block number should be fine and minimal. 02:07:22 Cindy_: Apologies for replying a few hours later. Yes, the Cuprate room is better to discuss this. 02:07:54 There's two types of interfaces: unvalidated and validated. unvalidated would be a remote RPC, which may tell you anything. validated means some degree of checks has occurred. 02:08:11 monero-interface implements the validated methods _for all unvalidated interfaces_. 02:08:36 So as monero-daemon-rpc implements the unvalidated interfaces directly, monero-rpc will still layer the safer validating abstractions on top. 02:09:33 You should only work with the validated interfaces. The unvalidated interfaces exist solely so an interface definition (like monero-daemon-rpc, for talking to remote nodes) can declare itself unvalidated and defer to the automatic validation provided within monero-interface. 02:10:13 Whereas if you were within a Monero node, say if you had local access to a Monero database from a node you _knew_ was honest, you could directly implement the validated interface due to trusting the origin. 02:11:21 So ScannableBlock will be from a validated interface. monero-daemon-rpc is not a validated interface itself, but as it implements the unvalidated interface traits, monero-interface will layer the safe validated APIs (with its own implementation), allowing you to use it like it's a validated interface. 02:12:11 The type definitions are largely present in monero-oxide. monero-interface sits above it in the crate hierarchy. monero-wallet sits one more step up, but re-exports everything in oxide and re-exports interface. 02:14:39 https://monero-oxide.github.io/monero-oxide/monero_interface/trait.ProvidesScannableBlocks.html is the literal `trait` to retrieve blocks with. 02:15:45 As you can see, it's automatically implemented for ProvidesUnvalidatedScannableBlocks, which is what MoneroDaemon (from monero-daemon-rpc) implements. 11:59:42 kayabaNerve: it's impl though 11:59:58 MoneroDaemon does not implement ProvidesTransactions 12:01:13 oh wait, impl ProvidesTransactions for P 12:01:20 nevermind, sorry for bothering you 12:08:01 i can't seem to use the crate from crates.rs normally since the copy there is an empty repo.. so i just import the crate manually from the git repo 17:36:42 Yep. That's all as expected for now.