set certified data
This section is a work in progress.
Examples:
import { blob, Canister, ic, update, Void } from 'azle/experimental';
export default Canister({
// sets up to 32 bytes of certified data
setCertifiedData: update([blob], Void, (data) => {
ic.setCertifiedData(data);
})
});