Type Alias massa_models::datastore::Datastore
source · pub type Datastore = BTreeMap<Vec<u8>, Vec<u8>>;
Expand description
Datastore entry for Ledger & ExecuteSC
Operation
A Datastore is a Key Value store where
Key: Byte array (max length should be 255)
Value: Byte array
What is stored can be arbitrary bytes but can often be smart contract bytecode (aka WASM binary)
Aliased Type§
struct Datastore { /* private fields */ }