pub trait RegistryInfo {
    fn registry_address(&self, name: String, block: BlockId) -> Option<Address>;
}
Expand description

Provides information on a blockchain service and it’s registry

Required methods

Get the address of a particular blockchain service, if available.

Implementors