radix-engine 1.3.1

Reference implementation of Radix Engine, from the Radix DLT project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::internal_prelude::*;
use radix_engine_interface::object_modules::metadata::MetadataValue;

#[derive(ScryptoSbor, ScryptoEvent, Debug, PartialEq, Eq)]
pub struct SetMetadataEvent {
    pub key: String,
    pub value: MetadataValue,
}

#[derive(ScryptoSbor, ScryptoEvent, Debug)]
pub struct RemoveMetadataEvent {
    pub key: String,
}