spiderlightning icon indicating copy to clipboard operation
spiderlightning copied to clipboard

modify messaging implementors to transmit CloudEvents instead of bytes (i.e., `list<u8>`)

Open danbugs opened this issue 2 years ago • 0 comments

Describe the solution you'd like The event type should be the following:

    record event {
		specversion: string,
		ty: string,
		source: string,
		id: string,
		data: option<list<u8>>,
		datacontenttype: option<string>,
		dataschema: option<string>,
		subject: option<string>,
		time: option<string>,	
		extensions: option<list<tuple<string, string>>>
    }

Additional context n/a

danbugs avatar Dec 14 '22 05:12 danbugs