hdk_crud 0.15.0

A library to help quickly and easily create a consistent set of create-read-update-delete functions for an Entry type in Holochain, complete with signaling options
Documentation
1
2
3
4
5
6
7
use hdk::prelude::*;

/// convert a SignedActionHashed which are like raw contents
/// into the ActionHash of itself
pub fn get_action_hash(signed_action_hashed: SignedActionHashed) -> ActionHash {
    signed_action_hashed.as_hash().to_owned()
}