notify with payment 128
This section is a work in progress.
Examples:
import { Canister, ic, update, Void } from 'azle/experimental';
import { otherCanister } from './otherCanister';
export default Canister({
sendCycles128Notify: update([], Void, () => {
return ic.notify(otherCanister.receiveCycles128, {
cycles: 1_000_000n
});
})
});