ICRC
ICRC copied to clipboard
Standard for canister metadata registry
Reserving for getting information about a canister (i.e. name, description, logo) in a way that would provide high certainty against impersonation attacks
As reference, i was working on this as wel calling it the internet computer toolkit standard but putting it under icrc makes more sense
#[query]
fn icts_name() -> String {
env!("CARGO_PKG_NAME").to_string()
}
#[query]
fn icts_version() -> String {
env!("CARGO_PKG_VERSION").to_string()
}
#[query]
fn icts_description() -> String {
env!("CARGO_PKG_DESCRIPTION").to_string()
}
@dostro Any work on this? It would fit nicely with https://github.com/dfinity/ICRC/issues/119 and maybe https://github.com/dfinity/ICRC/issues/126?
@skilesare no, we have not made any progress