Expand description
ยงMonero Interface
monero-interface provides two sets of traits for interfacing with the Monero
network.
Unvalidated*: Traits representing data from an arbitrary source, with minimal validation if any.Validated*: Traits representing data from a (potentially trusted) source which certain guarantees on the structure, sanity of the returned results.
Neither set of traits promise the returned data is completely accurate and up to date. Using an untrusted interface, even if the results are validated as sane, may always inject invalid data unless the caller locally behaves as a full node, applying all consensus rules, and is able to detect if they are not on the best chain. Please carefully consider the exact promises made and how that relates to your security model.
Additionally, interfaces presumably learn the pattern of your requests (due to responding to your requests), which may reveal information to the interface. Callers SHOULD NOT make any requests specific to their wallet which will not eventually end up as on-chain information, and callers SHOULD even be careful with when they make requests, as discussed in Remote Side-Channel Attacks on Anonymous Transactions.
This library is usable under no-std, with alloc, when the std feature (on
by default) is disabled.
ยงCargo Features
std(on by default): Enablesstd(and with it, more efficient internal implementations).
Re-exportsยง
pub use provides_blockchain::ProvidesUnvalidatedBlockchain;pub use provides_blockchain::ProvidesBlockchain;pub use provides_blockchain_meta::*;pub use provides_transactions::*;pub use provides_outputs::*;pub use provides_scannable_blocks::*;pub use provides_decoys::*;pub use provides_fee_rates::*;
Modulesยง
- prelude
- A prelude of recommended imports to glob import.
- provides_
blockchain ๐ - provides_
blockchain_ ๐meta - provides_
decoys ๐ - provides_
fee_ ๐rates - provides_
outputs ๐ - provides_
scannable_ ๐blocks - provides_
transactions ๐
Enumsยง
- Interface
Error - An error from the interface.